-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.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
[tool.poetry]
name = "dialog"
version = "0.1.0"
description = "Humanized Conversation API (using LLM)"
authors = ["Avelino <[email protected]>", "Vinicius Mesel <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/talkdai/dialog"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
fastapi = "0.109.2"
sqlalchemy = "^2.0.23"
uvicorn = {extras = ["standard"], version = "^0.24.0.post1"}
psycopg2-binary = "^2.9.9"
pgvector = "^0.2.3"
python-decouple = "^3.8"
openai = "^1.2.2"
pydantic = "^2.4.2"
psycopg = "^3.1.12"
tiktoken = "<1"
pandas = "^2.1.3"
psycopg-binary = "^3.1.12"
scikit-learn = "^1.3.2"
alembic = "^1.12.1"
importlib-metadata = "^7.0.1"
pyarrow = "^15.0.0"
iniconfig = "^2.0.0"
dialog-lib = "^0.0.1.19"
langserve = "^0.2.0"
sse-starlette = "^2.1.0"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
black = "^24.3.0"
isort = "^5.12.0"
responses = "^0.25.0"
pytest-mock = "^3.12.0"
pytest-alembic = "^0.11.0"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"