Add GET /tools/environment endpoint that fetches weather, forecast, sun times, and air quality data from user's volatile Qdrant collection. - Add qdrant-client dependency - Create QdrantReadClient wrapper for read-only queries - Add environment schemas and service in tools domain - Parse weather, forecast, sun times, and air quality from Qdrant payloads - Support user-specific collections via preferred_username from OIDC - Add comprehensive service tests (13 tests) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
38 lines
754 B
Plaintext
38 lines
754 B
Plaintext
# FastAPI and ASGI server
|
|
fastapi>=0.115.0
|
|
starlette>=0.49.1 # CVE-2025-54121, CVE-2025-62727
|
|
uvicorn[standard]>=0.34.0
|
|
pydantic>=2.11.1,<3.0.0
|
|
pydantic-settings>=2.10.1
|
|
|
|
# HTTP client
|
|
httpx>=0.28.0
|
|
python-socketio[asyncio_client]>=5.14.0 # CVE-2025-61765
|
|
|
|
# Web scraping
|
|
beautifulsoup4~=4.12.0
|
|
trafilatura~=1.12.0
|
|
lxml~=5.3.0
|
|
duckduckgo-search~=4.1.0
|
|
|
|
# Utilities
|
|
python-multipart~=0.0.12
|
|
python-dotenv~=1.0.0
|
|
python-json-logger~=2.0.0
|
|
pytz~=2024.1
|
|
dnspython~=2.7.0
|
|
psutil~=6.1.0
|
|
|
|
# Authentication & Security
|
|
PyJWT[crypto]>=2.9.0
|
|
python-jose[cryptography]>=3.4.0 # CVE PYSEC-2024-232, PYSEC-2024-233
|
|
cryptography>=44.0.1 # CVE-2024-12797
|
|
|
|
# Database
|
|
sqlalchemy[asyncio]~=2.0.0
|
|
asyncpg>=0.30.0
|
|
alembic~=1.13.0
|
|
|
|
# Vector Database
|
|
qdrant-client>=1.9.0
|