contimp-app / pyproject.toml
lefft's picture
Per-task LLM backends (OpenAI + Anthropic wire); config-copilot pinned to the oumi backend
1bcb9d8 verified
Raw
History Blame Contribute Delete
498 Bytes
[project]
name = "contimp-app"
version = "0.1.0"
description = "Demo LLM app for dogfooding Oumi's continuous model improvement loop"
requires-python = ">=3.12"
dependencies = [
"anthropic>=0.111.0",
"duckdb>=1.5.4",
"fastapi>=0.136.3",
"jsonschema>=4.26.0",
"langfuse>=4.7.1",
"openai>=2.41.1",
"pyyaml>=6.0.3",
"uvicorn[standard]>=0.49.0",
]
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pytest>=9.0.3",
]
[tool.pytest.ini_options]
testpaths = ["tests"]