feat: project skeleton with health endpoint

This commit is contained in:
Joseph Doherty
2026-04-26 11:23:38 -04:00
parent f0594c24d2
commit 4a60171035
7 changed files with 47 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
[project]
name = "chat"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.110",
"uvicorn[standard]>=0.30",
"httpx>=0.27",
"pydantic>=2.6",
"pydantic-settings>=2.2",
"openai>=1.30",
"instructor>=1.3",
"tiktoken>=0.7",
"jinja2>=3.1",
"aiosqlite>=0.20",
]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-asyncio>=0.23", "freezegun>=1.4"]
[tool.pytest.ini_options]
pythonpath = ["."]
asyncio_mode = "auto"