forked from disler/multi-agent-postgres-data-analytics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
31 lines (27 loc) · 797 Bytes
/
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
[tool.poetry]
name = "postgres-da-ai-agent"
version = "0.1.0"
description = ""
authors = ["indydevdan <minor7addfloortom@gmail.com>"]
readme = "README.md"
packages = [{include = "postgres_da_ai_agent"}]
[tool.poetry.dependencies]
python = "^3.10"
openai = "^1.2.3"
psycopg2-binary = "^2.9.8"
argparse = "^1.4.0"
python-dotenv = "^1.0.0"
pyautogen = "^0.1.7"
transformers = "^4.34.1"
torch = "^2.1.0"
scikit-learn = "^1.3.1"
tiktoken = "^0.5.1"
guidance = "^0.0.64"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# Not available in current version due to pyautogen not supporting openai ^1.2.3
# old_start = "postgres_da_ai_agent.main:main"
start = "postgres_da_ai_agent.turbo_main:main"
turbo = "postgres_da_ai_agent.turbo_main:main"