-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
85 lines (82 loc) · 2.05 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
79
80
81
82
83
84
85
[tool.poetry]
name = "MedVoice-FastAPI"
version = "0.1.0"
description = ""
authors = ["dolelongan <dolelongan@gmail.com>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
annotated-types = "0.7.0"
anyio = "4.7.0"
botocore = "1.35.90"
cachetools = "5.5.0"
certifi = "2024.12.14"
charset-normalizer = "3.4.1"
click = "8.1.8"
fastapi = "0.115.6"
google-api-core = "2.24.0"
google-auth = "2.37.0"
google-cloud-core = "2.4.1"
google-cloud-storage = "2.19.0"
google-crc32c = "1.6.0"
google-resumable-media = "2.7.2"
googleapis-common-protos = "1.66.0"
h11 = "0.14.0"
httpcore = "1.0.7"
httpx = "0.28.1"
idna = "3.10"
jmespath = "1.0.1"
packaging = "<24.0"
proto-plus = "1.25.0"
protobuf = "4.25.5"
pyasn1 = "0.6.1"
pyasn1-modules = "0.4.1"
pydantic = "2.7.1"
pydantic-core = "2.18.2"
pygments = "2.18.0"
python-dateutil = "2.9.0.post0"
replicate = "0.34.2"
requests = "2.32.3"
rsa = "4.9"
s3transfer = "0.10.4"
six = "1.17.0"
sniffio = "1.3.1"
starlette = "0.41.3"
typing-extensions = "4.12.2"
urllib3 = "2.3.0"
uvicorn = "0.34.0"
poethepoet = "^0.32.0"
python-multipart = "^0.0.20"
poetry-plugin-export = "^1.7.1"
jinja2 = "^3.1.3"
nest-asyncio = "^1.6.0"
pyngrok = "^7.1.6"
python-dotenv = "^1.0.1"
langchain = "^0.2.2"
langchain-community = "^0.2.3"
langchain-core = "^0.2.4"
pypdf = "^4.2.0"
langchain-text-splitters = "^0.2.1"
langchainhub = "^0.1.20"
jq = "^1.7.0"
celery = {extras = ["redis"], version = "^5.4.0"}
flower = "^2.0.1"
aiofiles = "^24.1.0"
asyncpg = "^0.30.0"
pydantic-settings = "^2.4.0"
pgvector = "^0.3.2"
passlib = "^1.7.4"
bcrypt = "^4.2.1"
minio = "^7.2.15"
[tool.poe.tasks]
run = "uvicorn 'app.main:app' --host=0.0.0.0 --port=8000 --loop asyncio"
compose = "docker-compose up --build --scale worker=1"
compose2 = "docker compose up --build --scale worker=1"
export = "poetry export -f requirements.txt --output requirements.txt --without-hashes"
import = "python3 scripts/pip_to_poetry_pkg.py"
flush = "python3 scripts/empty_dir.py"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"