-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
78 lines (73 loc) · 1.88 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
66
67
68
69
70
71
72
73
74
75
76
77
78
[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.10"
urllib3 = "2.0.7"
fastapi = "^0.95.2"
uvicorn = "^0.22.0"
pydantic = "1.10.13"
matplotlib = "^3.7.1"
pandas = "2.2.2"
httpx = "^0.24.1"
aiofiles = "^23.1.0"
clamd = "^1.0.2"
python-dotenv = "^1.0.0"
fastapi-versioning = "^0.10.0"
sqlalchemy = "^2.0.15"
psycopg2-binary = "^2.9.6"
hdbscan = "0.8.33"
python-multipart = "0.0.18"
minio = "^7.1.15"
bertopic = "0.14.1"
transformers = "4.38.1"
tensorflow = {version = "2.13.0", markers = "platform.machine == 'x86_64'"}
tensorflow-macos = {version = "2.13.0", platform = "darwin", markers = "platform.machine == 'arm64'"}
tensorflow-metal = {version = "1.0.1", platform = "darwin", markers = "platform.machine == 'arm64'"}
snorkel = "0.9.9"
gpt4all = "^1.0.7"
langchain = "0.1.16"
torch = "2.0.0"
numpy = "1.24.3"
scikit-learn = "1.5.0"
faiss-cpu = "^1.7.4"
rank-bm25 = "^0.2.2"
jinja2 = "3.1.4"
cython = "^0.29"
typing-extensions = "4.2.0"
werkzeug = "3.0.6"
glibc = "0.6.1"
pillow = "10.3.0"
aiohttp = "3.10.11"
fonttools = "4.49.0"
sentence-transformers = "2.3.0"
ctransformers = "0.2.27"
packaging = "23.2"
langsmith = "0.1.50"
scipy = "1.12.0"
requests = "2.32.0"
idna = "3.7"
nltk = "3.9.1"
setuptools = "70.0.0"
[tool.poetry.group.test.dependencies]
pylint = "^2.17.4"
pytest = "^7.3.1"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.0"
pytest-mock = "^3.10.0"
isort = "^5.12.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.2"
fastapi-code-generator = "^0.4.2"
pipdeptree = "^2.7.1"
openai = "^0.27.8"
[tool.coverage.run]
source = ["app"]
omit = ["__init__.py", "initial_data.py", "init_db.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"