forked from blockchainworld/chat-langchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 883 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.1"
description = ""
authors = ["SN <[email protected]>"]
readme = "README.md"
packages = [{include = "backend"}]
[tool.poetry.dependencies]
python = "^3.11"
langchain = ">=0.2.0"
langsmith = "^0.1.89"
langchain-cohere = ">=0.1.5,<0.2.0"
langchain-community = "^0.2.7"
langchain-openai = ">=0.1.7,<0.2.0"
langchain-google-genai = ">=1.0.5,<2.0.0"
langchain-anthropic = "^0.1.13"
langchain-fireworks = "^0.1.3"
langchain-weaviate = "^0.0.2"
langchain-groq = "^0.1.6"
langgraph = ">=0.2.0,<0.3.0"
beautifulsoup4 = "^4.12.2"
weaviate-client = "^4.0.0"
lxml = "^4.9.3"
voyageai = "^0.1.4"
pillow = "^10.2.0"
psycopg2-binary = "^2.9.9"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.0"
ruff = "^0.2.2"
pandas = "^2.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"