84de9a02c8
- POST /chat endpoint with message and conversation_id support - GET /health endpoint for Cloud Run health checks - Local and Remote LLM adapters with async httpx - Pydantic schemas and environment-based config - Dockerfile configured for Cloud Run deployment Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
176 B
Bash
7 lines
176 B
Bash
# LLM Mode: "local" or "remote"
|
|
LLM_MODE=local
|
|
|
|
# Remote LLM Configuration (required if LLM_MODE=remote)
|
|
LLM_REMOTE_URL=https://your-llm-service.com/generate
|
|
LLM_REMOTE_TOKEN=
|