untracked files on main: dceb101 feat(#63): IMP-34 R1 donor capacity measured bound (u1+u2)

This commit is contained in:
2026-05-21 22:07:41 +09:00
commit 8f085a28d3
3220 changed files with 985495 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
[project]
name = "design-agent"
version = "0.1.0"
description = "콘텐츠 시각 구조화 슬라이드 생성 에이전트"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.115",
"uvicorn>=0.30",
"jinja2>=3.1",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"anthropic>=0.40",
"httpx>=0.27",
"python-multipart>=0.0.9",
"sse-starlette>=2.0",
"pyyaml>=6.0",
"Pillow>=10.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"ruff>=0.8",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"integration: end-to-end pipeline integration tests (heavy; invoke Selenium)",
]