2024-10-06 01:04:15 +08:00
|
|
|
[tool.poetry]
|
|
|
|
name = "agentpress"
|
2025-03-29 06:33:55 +08:00
|
|
|
version = "0.1.12"
|
2024-11-02 07:05:29 +08:00
|
|
|
description = "Building blocks for AI Agents"
|
|
|
|
authors = ["marko-kraemer <mail@markokraemer.com>"]
|
2024-10-06 01:04:15 +08:00
|
|
|
readme = "README.md"
|
2024-11-01 05:26:30 +08:00
|
|
|
license = "MIT"
|
|
|
|
homepage = "https://github.com/kortix-ai/agentpress"
|
|
|
|
repository = "https://github.com/kortix-ai/agentpress"
|
|
|
|
keywords = ["llm", "ai", "agents", "ai agents", "ai agent framework"]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
]
|
2024-10-06 01:04:15 +08:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2025-04-11 00:02:21 +08:00
|
|
|
python = "^3.11"
|
2025-04-10 00:44:17 +08:00
|
|
|
streamlit-quill = "0.0.3"
|
|
|
|
python-dotenv = "1.0.1"
|
|
|
|
litellm = "^1.44.0"
|
|
|
|
click = "8.1.7"
|
|
|
|
questionary = "2.0.1"
|
2024-11-03 02:28:11 +08:00
|
|
|
requests = "^2.31.0"
|
2025-04-10 00:44:17 +08:00
|
|
|
packaging = "24.1"
|
|
|
|
setuptools = "75.3.0"
|
|
|
|
pytest = "8.3.3"
|
|
|
|
pytest-asyncio = "0.24.0"
|
|
|
|
asyncio = "3.4.3"
|
2024-11-19 10:46:25 +08:00
|
|
|
altair = "4.2.2"
|
2025-04-10 00:44:17 +08:00
|
|
|
prisma = "0.15.0"
|
|
|
|
fastapi = "0.110.0"
|
|
|
|
uvicorn = "0.27.1"
|
|
|
|
python-multipart = "0.0.20"
|
|
|
|
redis = "5.2.1"
|
|
|
|
upstash-redis = "1.3.0"
|
2025-03-29 06:33:55 +08:00
|
|
|
supabase = "^2.15.0"
|
2025-04-10 00:44:17 +08:00
|
|
|
pyjwt = "2.10.1"
|
2025-03-30 14:48:57 +08:00
|
|
|
exa-py = "^1.9.1"
|
|
|
|
e2b-code-interpreter = "^1.2.0"
|
2025-04-10 00:44:17 +08:00
|
|
|
certifi = "2024.2.2"
|
|
|
|
python-ripgrep = "0.0.6"
|
2025-04-21 19:50:42 +08:00
|
|
|
daytona_sdk = "^0.14.0"
|
2025-04-10 00:44:17 +08:00
|
|
|
boto3 = "^1.34.0"
|
|
|
|
openai = "^1.72.0"
|
2025-04-10 21:13:32 +08:00
|
|
|
streamlit = "^1.44.1"
|
2025-04-11 00:02:21 +08:00
|
|
|
nest-asyncio = "^1.6.0"
|
2025-04-12 09:22:28 +08:00
|
|
|
vncdotool = "^1.2.0"
|
2025-04-20 08:27:32 +08:00
|
|
|
tavily-python = "^0.5.4"
|
2025-04-21 11:24:20 +08:00
|
|
|
pytesseract = "^0.3.13"
|
2024-11-02 07:05:29 +08:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2024-11-03 02:28:11 +08:00
|
|
|
agentpress = "agentpress.cli:main"
|
2024-11-02 09:42:18 +08:00
|
|
|
|
|
|
|
[[tool.poetry.packages]]
|
2024-11-03 02:28:11 +08:00
|
|
|
include = "agentpress"
|
2024-10-06 01:04:15 +08:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|