Metadata-Version: 2.4
Name: notes-agent-backend
Version: 0.1.0
Summary: Notes Agent 的 FastAPI 基础壳子
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: fastapi<1.0,>=0.116
Requires-Dist: uvicorn[standard]<1.0,>=0.35

# Backend

FastAPI + Pydantic 的最小后端壳子。

```powershell
uv sync
uv run uvicorn app.main:app --reload --host 127.0.0.1 --port 8000
```

启动后可访问：

- 健康检查：<http://127.0.0.1:8000/health>
- API 文档：<http://127.0.0.1:8000/docs>
