-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (61 loc) · 1.72 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "app"
version = "0.1.0"
description = ""
authors = ["Ruben Bimberg <[email protected]>"]
readme = "README.md"
packages = [
{ include = "app" },
]
[tool.poetry.dependencies]
python = "=3.11.10"
uvicorn = "^0.23.2"
langserve = {extras = ["server"], version = ">=0.0.30"}
pyjwt = "^2.9.0"
langchain = "^0.3.4"
langchain-openai = "^0.2.3"
langchain-anthropic = "^0.2.3"
langchain-mistralai = "^0.2.0"
langchain-fireworks = "^0.2.1"
langchain-together = "^0.2.0"
langchain-google-genai = "^2.0.1"
langchain-groq = "^0.2.0"
langchain-cohere = "^0.3.1"
langchain-aws = "^0.2.4"
langchain-huggingface = "^0.1.0"
langchain-nvidia-ai-endpoints = "^0.3.3"
langchain-ai21 = "^0.1.9"
langchain-upstage = "^0.3.0"
langchain-community = "^0.3.3"
langchain-ibm = "^0.3.2"
snowflake-snowpark-python = "^1.24.0"
asyncpg = "^0.30.0"
aiofiles = "^24.1.0"
python-multipart = "^0.0.17"
python-magic = "^0.4.27"
langchain-chroma = "^0.1.4"
imageio = "^2.36.0"
bs4 = "^0.0.2"
unstructured = {extras = ["all-docs"], version = "^0.16.4"}
pypandoc-binary = "^1.14"
more-itertools = "^10.5.0"
apscheduler = "^3.10.4"
langgraph = "^0.2.45"
psycopg = {extras = ["binary", "pool"], version = "^3.2.3"}
psycopg-pool = "^3.2.3"
langgraph-checkpoint-postgres = "^2.0.2"
torch = {version = "^2.5.1+cpu", source = "pytorch"}
torchvision = {version = "^0.20.1+cpu", source = "pytorch"}
torchaudio = {version = "^2.5.1+cpu", source = "pytorch"}
llmlingua = "^0.2.2"
detoxify = "^0.5.2"
langchain-ollama = "^0.2.3"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[tool.poetry.group.dev.dependencies]
langchain-cli = ">=0.0.15"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"