-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
78 lines (71 loc) · 1.84 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
[tool.poetry]
name = "welearn-api"
version = "0.1.0"
description = ""
authors = ["Sandra Guerreiro <sandragjacinto@gmail.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
azure-core = "^1.38.0"
backoff = "^2.2.1"
ecologits = "^0.5.2"
fastapi = "^0.115.8"
huggingface-hub = "^0.29.1"
langdetect = "^1.0.9"
litellm = "^1.61.15"
psycopg2-binary = "^2.9.10"
pydantic = "^2.1.1"
pydantic-settings = "^2.0.3"
pylint-pydantic = "^0.2.4"
python-dotenv = "^1.0.0"
python-multipart = "^0.0.22"
qdrant-client = "^1.15.0"
requests = "^2.32.4"
scikit-learn = "^1.5.1"
sqlalchemy = "^2.0.35"
transformers="^4.50.0"
torch = {version = "^2.2.2+cpu", source = "pytorch_cpu"}
torchvision = {version = "^0.17.2+cpu", source = "pytorch_cpu"}
uvicorn = {extras = ["standard"], version = "^0.29.0"}
autogen-core = "^0.5.7"
autogen-ext = "^0.5.7"
autogen-agentchat = "^0.5.7"
pypdf = "^6.6.0"
numpy = "^1.26.4"
python-docx = "^1.1.2"
langchain-core = "^0.3.81"
langgraph = "^0.6.7"
langgraph-checkpoint-postgres = "^2.0.23"
azure-ai-inference = "^1.0.0b9"
azure-identity = "^1.25.0"
psycopg = {extras = ["binary"], version = "^3.2.10"}
welearn-database = "1.4.0"
bs4 = "^0.0.2"
urllib3 = "^2.6.3"
refinedoc = "^1.0.1"
langchain-azure-ai = "^0.1.8"
aiohttp = "^3.13.3"
httpx = "^0.28.1"
beautifulsoup4 = "^4.14.3"
json-repair = "^0.55.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-env = "^1.0.1"
flake8 = "^6.1.0"
black = "^24.3.0"
isort = "^5.12.0"
[tool.poetry.group.metrics.dependencies]
locust = "^2.20.1"
ragas = ">=0.2.15"
langchain-community = ">=0.2.1"
prettytable = "^3.10.0"
langchain-huggingface = "^0.1.2"
[[tool.poetry.source]]
name = "pytorch_cpu"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"