26 lines
612 B
TOML
26 lines
612 B
TOML
[project]
|
|
name = "haiku-rag-app"
|
|
version = "0.1.0"
|
|
description = "Conversational RAG application with haiku.rag"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"starlette>=0.50.0",
|
|
"uvicorn[standard]>=0.40.0",
|
|
"pydantic-ai-slim[ag-ui,anthropic,openai]>=1.81.0",
|
|
"python-dotenv>=1.2.1",
|
|
"haiku.rag-slim>=0.46.0",
|
|
"logfire[pydantic-ai]>=3.17.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = ["pyright>=1.1.407", "ruff>=0.14.10"]
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["."]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|