forked from langchain-ai/chat-langchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 897 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "chat-langchain"
version = "0.1.0"
description = ""
authors = ["SN <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.103.1"
pydantic = "1.10"
langchain = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/langchain" }
uvicorn = "^0.23.2"
beautifulsoup4 = "^4.12.2"
weaviate-client = "^3.23.2"
psycopg2 = "^2.9.7"
lxml = "^4.9.3"
langserve = {extras = ["server"], version = "^0.0.39"}
voyageai = "^0.1.4"
anthropic = "^0.10.0"
pillow = "^10.2.0"
tiktoken = "^0.5.2"
langchain-community = "^0.0.14"
langchain-openai = "^0.0.3"
langchain-google-genai = "^0.0.6"
langchain-core = "0.1.15rc1"
fireworks-ai = "^0.11.2"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"