-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
149 lines (143 loc) · 4.29 KB
/
Copy pathpyproject.toml
File metadata and controls
149 lines (143 loc) · 4.29 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
[tool.poetry]
name = "c3po-model-server"
version = "0.1.0"
description = "An AI service for language-based models"
authors = ["Eric Robinson","Emilie Cowen","Mark Howard","Pat Kelly"]
readme = "README.md"
packages = [{include = "app"}]
[tool.poetry.dependencies]
python = "~3.13"
urllib3 = ">=2.7.0"
fastapi = "^0.135.1"
uvicorn = "^0.35.0"
pydantic = "2.13.4"
matplotlib = "^3.7.1"
pandas = "^2.3.2"
fastapi-versioning = "^0.10.0"
sqlalchemy = "^2.0.15"
psycopg2-binary = "^2.9.6"
hdbscan = "^0.8.40"
python-multipart = ">=0.0.27"
bertopic = "^0.14.1"
snorkel = ">=0.10.0"
gpt4all = "^2.8.2"
langchain = ">=1.2.22"
torch = "2.13.0"
numpy = "2.4.6"
scikit-learn = "^1.7.1"
faiss-cpu = "^1.7.4"
rank-bm25 = "^0.2.2"
jinja2 = "^3.1.6"
cython = "^3.1.3"
typing-extensions = "^4.15.0"
pillow = "^12.2.0"
fonttools = "^4.60.2"
ctransformers = "^0.2.27"
packaging = "^24.0"
langsmith = "^0.9.4"
scipy = "^1.15.3"
requests = "^2.32.5"
idna = ">=3.15"
setuptools = "83.0.0"
annotated-types = "^0.7.0"
langchain-core = "^1.4.8"
langchain-text-splitters = "^1.1.2"
pydantic-settings = "^2.10.1"
pydantic_core = "^2.18.4"
h5py = "^3.14.0"
langchain-community = "^0.4.1"
boto3 = "^1.37.37"
boto3-stubs = {extras = ["s3"], version = "^1.37.38"}
h11 = "^0.16.0"
aiofiles = "^24.1.0"
protobuf = "^5.29.6"
transformers = "^5.0.0"
sentence-transformers = "^5.1.0"
huggingface-hub = "^1.11.0"
tensorflow = "^2.19.1"
absl-py = "^2.3.1"
aiohttp = "^3.12.15"
aiosignal = "^1.4.0"
anyio = "^4.10.0"
botocore = "^1.40.19"
botocore-stubs = "^1.38.46"
certifi = "^2025.8.3"
charset-normalizer = "^3.4.3"
click = "^8.2.1"
contourpy = "^1.3.2"
distlib = "^0.4.0"
filelock = "^3.19.1"
frozenlist = "^1.7.0"
fsspec = "^2025.7.0"
grpcio = "^1.74.0"
httpx-sse = "^0.4.1"
joblib = "^1.5.2"
kiwisolver = "^1.4.9"
markdown = "^3.8.2"
markdown-it-py = "^4.0.0"
multidict = "^6.6.4"
mypy-boto3-s3 = "^1.40.0"
narwhals = "^2.17.0"
networkx = "^3.4.2"
orjson = "^3.11.7"
platformdirs = "^4.4.0"
plotly = "^6.5.2"
propcache = "^0.3.2"
pygments = "^2.19.2"
regex = "^2025.7.34"
s3transfer = "^0.13.1"
sentencepiece = "^0.2.1"
types-awscrt = "^0.27.6"
types-s3transfer = "^0.13.0"
wrapt = "^1.17.3"
yarl = "^1.20.1"
starlette = "^1.0.1"
torchvision = "0.28.0"
umap-learn = "^0.5.9.post2"
tf-keras = "^2.19.0"
keras = "^3.12.1"
jaraco-context = "^6.1.0"
langchain-classic = ">=1.0.7"
llvmlite = "^0.47.0"
[tool.poetry.group.test.dependencies]
pylint = "^2.17.4"
pytest = "^9.0.3"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.0"
pytest-mock = "^3.10.0"
isort = "^5.12.0"
httpx2 = "^2.0.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.2"
pipdeptree = "^2.7.1"
openai = "^0.27.8"
flake8 = "^4.0.1"
mccabe = "^0.6.0"
[tool.coverage.run]
source = ["app"]
omit = ["__init__.py", "initial_data.py", "init_db.py"]
[tool.pytest.ini_options]
filterwarnings = [
# FastAPI/Starlette httpx deprecation - will be resolved when FastAPI updates
"ignore:Using `httpx` with `starlette.testclient` is deprecated:starlette.testclient.StarletteDeprecationWarning",
# Swig internal deprecations - not actionable
"ignore:builtin type SwigPyPacked has no __module__ attribute:DeprecationWarning",
"ignore:builtin type SwigPyObject has no __module__ attribute:DeprecationWarning",
"ignore:builtin type swigvarlink has no __module__ attribute:DeprecationWarning",
# langchain-community deprecation - package being sunset, migration tracked separately
"ignore:`langchain-community` is being sunset:DeprecationWarning",
# UMAP runtime warnings with small test datasets - expected behavior
"ignore:n_jobs value .* overridden.*random_state:UserWarning",
"ignore:n_neighbors is larger than the dataset size:UserWarning",
# HDBSCAN warning for small datasets - expected in tests
"ignore:Clusterer does not have any defined clusters:UserWarning",
# Sklearn version compatibility - tracked separately
"ignore:Trying to unpickle estimator.*version:sklearn.exceptions.InconsistentVersionWarning",
# Sklearn SVC probability deprecation - fixed in code, but may appear in old pickled models
"ignore:The `probability` parameter was deprecated:FutureWarning",
# Snorkel FutureWarning - will be resolved in future snorkel updates
"ignore:Input has data type int64.*cast to float64:FutureWarning",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"