-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
74 lines (68 loc) · 1.64 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
[tool.poetry]
name = "intentkit"
version = "0.1.0"
description = "Intent-based AI Agent Platform"
authors = ["Ruihua <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.115.6"
uvicorn = "^0.34.0"
gunicorn = "^23.0.0"
pydantic = "*"
pydantic-settings = "^2.7.1"
sqlmodel = "^0.0.22"
sqlalchemy = "^2.0.36"
psycopg = "^3.2.3"
psycopg2 = "*"
psycopg-pool = "^3.2.4"
alembic = "^1.14.0"
pgvector = "^0.2.5"
langchain = "^0.3.13"
langchain-core = "^0.3.29"
langchain-openai = "^0.2.11"
langchain-postgres = "^0.0.12"
langchain-community = "^0.3.13"
langgraph = "^0.2.61"
langgraph-checkpoint = "^2.0.8"
langgraph-checkpoint-postgres = "^2.0.10"
openai = "^1.59.6"
cdp-langchain = "^0.0.9"
cdp-sdk = "^0.13.0"
cdp-agentkit-core = "^0.0.7"
tweepy = "^4.15.0"
python-dotenv = "^1.0.1"
APScheduler = "^3.11.0"
anyio = "^4.8.0"
slack-sdk = "^3.34.0"
requests = "^2.32.3"
aws-secretsmanager-caching = "^1.1.3"
botocore = "^1.35.97"
aiogram = "^3.17.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.4"
[tool.ruff.lint]
extend-select = ["I"]
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
ignore_missing_imports = true
explicit_package_bases = true
namespace_packages = true
mypy_path = "."
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"