plano/demos/use_cases/rag_agent/pyproject.toml

23 lines
415 B
TOML
Raw Normal View History

2025-11-24 15:02:52 -08:00
[project]
name = "rag_agent"
version = "0.1.0"
description = "RAG Agent"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"click>=8.2.1",
"mcp>=1.13.1",
2025-12-15 18:17:15 -08:00
"fastmcp>=2.14",
2025-11-24 15:02:52 -08:00
"pydantic>=2.11.7",
"fastapi>=0.104.1",
"uvicorn>=0.24.0",
"openai>=1.0.0",
]
[project.scripts]
rag_agent = "rag_agent:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"