Files
webber/webber-api/requirements.txt
T
jpmschweitzerandClaude Opus 4.5 2523db4da7
Build and Push API / release (push) Successful in 3s
Build and Push API / build (push) Failing after 34s
feat: add conversation persistence and context management layer
- SQLAlchemy async database layer (SQLite dev, PostgreSQL prod)
- Conversation and Message models with UUID primary keys
- Token counting utilities using litellm
- Context summarization at 80% token threshold
- REST API endpoints for multi-turn conversations
- 19 conversation tests, 6 token tests (176 total passing)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-11 22:42:38 +01:00

35 lines
868 B
Plaintext

# Webber Production Dependencies
# Minor version pinning (~=) allows patch updates for security fixes
# CVE check date: 2026-01-09
# CVE check sources: PyPI, GitHub Advisories, Snyk, NVD
# Core FastAPI
fastapi~=0.128.0
starlette~=0.50.0 # CVE-2025-62727, CVE-2025-54121 fixed
uvicorn[standard]~=0.40.0
pydantic~=2.12.4 # CVE-2024-3772 (ReDoS) fixed in 2.4.0+
pydantic-settings~=2.12.0
# Agent Framework
pydantic-ai~=1.40.0
# HTTP client
httpx~=0.28.1
aiofiles~=25.1.0
# CLI
typer~=0.15.0
rich~=13.9.0
# Utilities
python-multipart~=0.0.21
python-dotenv~=1.2.1
pathspec~=0.12.1 # Gitignore pattern matching
# Database
sqlalchemy[asyncio]~=2.0.36
aiosqlite~=0.21.0 # SQLite async driver (dev)
# Token counting
litellm~=1.57.0 # Multi-model token counting