Add production deployment config, Alembic migration, switch to Haiku

- Production Docker Compose with Caddy reverse proxy, Gunicorn, Nginx
- Multi-stage frontend build for production
- Deploy script and automated database backup script
- Initial Alembic migration with all tables
- Switch recommendation model from Sonnet to Haiku for cost efficiency
This commit is contained in:
root
2026-03-30 21:40:16 -05:00
parent b97955d004
commit cef7d576d4
9 changed files with 262 additions and 1 deletions

View File

@@ -135,7 +135,7 @@ Return ONLY the JSON array, no other text."""
# Call Claude API
client = anthropic.Anthropic(api_key=settings.ANTHROPIC_API_KEY)
message = client.messages.create(
model="claude-sonnet-4-20250514",
model="claude-haiku-4-5-20251001",
max_tokens=2000,
messages=[{"role": "user", "content": prompt}],
)