-
Notifications
You must be signed in to change notification settings - Fork 583
/
Copy pathpyproject.toml
107 lines (101 loc) · 2.75 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[project]
name = "intentkit"
version = "0.1.19"
description = "Intent-based AI Agent Platform"
authors = [{name = "Ruihua", email = "ruihua@crestal.network"}]
readme = "README.md"
requires-python = ">=3.12,<4.0"
dependencies = [
"langgraph (>=0.3.8,<0.4.0)",
"langgraph-prebuilt>=0.1.2,<0.2.0",
"uvicorn>=0.34.0,<0.35.0",
"fastapi>=0.115.8",
"gunicorn>=23.0.0",
"pydantic>=2.10.6",
"pydantic-settings>=2.8.1",
"sqlalchemy[asyncio]>=2.0.37",
"psycopg>=3.2.3",
"psycopg2",
"psycopg-pool>=3.2.4",
"alembic>=1.14.0",
"pgvector>=0.3.6",
"langchain (>=0.3.20,<0.4.0)",
"langchain-core>=0.3.43",
"langchain-openai>=0.3.8",
"langchain-postgres>=0.0.13",
"langchain-community>=0.3.19",
"langgraph-checkpoint>=2.0.18",
"langgraph-checkpoint-postgres>=2.0.16",
"openai>=1.59.6",
"cdp-sdk==0.17.0",
"tweepy[async]>=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",
"epyxid>=0.3.3",
"sentry-sdk[fastapi]>=2.20.0",
"asyncpg>=0.30.0",
"goat-sdk>=0.1.4",
"goat-sdk-adapter-langchain",
"goat-sdk-wallet-crossmint",
"goat-sdk-wallet-evm",
"goat-sdk-wallet-web3",
"goat-sdk-wallet-solana",
"goat-sdk-plugin-1inch",
"goat-sdk-plugin-allora",
"goat-sdk-plugin-coingecko",
"goat-sdk-plugin-dexscreener",
"goat-sdk-plugin-erc20",
"goat-sdk-plugin-farcaster",
"goat-sdk-plugin-jsonrpc",
"goat-sdk-plugin-jupiter",
"goat-sdk-plugin-nansen",
"goat-sdk-plugin-opensea",
"goat-sdk-plugin-rugcheck",
"goat-sdk-plugin-spl-token",
"goat-sdk-plugin-superfluid",
"goat-sdk-plugin-uniswap",
"pyyaml>=6.0.2",
"python-multipart>=0.0.20",
"langchain-xai>=0.2.1",
"coinbase-agentkit==0.1.4.dev202502250",
"coinbase-agentkit-langchain>=0.1.0",
"jsonref>=1.1.0",
"pytz>=2025.1",
"redis (>=5.2.1,<6.0.0)",
"telegramify-markdown (>=0.5.0,<0.6.0)"
]
[tool.poetry]
package-mode = false
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "^0.11.1"
jsonschema = "^4.21.1"
[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"