Spaces:
Sleeping
Sleeping
File size: 679 Bytes
a67367b |
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 |
[project]
name = "ai-service"
version = "0.1.0"
description = "AI Agent Service for Todo List App"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"openai-agents>=0.3.2",
"python-mcp>=1.0.0",
"httpx>=0.27.2",
"pydantic>=2.10",
"pydantic-settings>=2.6.1",
"openai-chatkit>=1.4.0"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["app", "todo_agent", "ai_mcp_server", "main"]
[tool.setuptools.packages.find]
where = ["."]
include = ["config*", "models*"]
[tool.uv.workspace]
members = [
"ai-service",
]
|