## Summary - Closes Phase 4 of [#62](#62): `evals/suite.json` (≥40 graded questions), `run_evals` management command, and manually-triggered `.gitea/workflows/run-evals.yml`. - Emits versioned WS `status` frames during grounded chat (evaluating / searching / reading_sources / refining / writing) for [chat_web_app#96](ai_ml_operations/chat_web_app#96). - Implements [#63](#63): Redis/Celery optional infra, `AgentRun`/`AgentStep`, tool registry (SSRF-safe `fetch_url`, tenant-scoped docs), LangGraph orchestrator, progress frames, REST `GET/POST /api/agent_runs/…`, gated by `ALLOW_AGENTIC_TASKS` (default off). ## Test plan - [x] `SKIP_RAG_INIT=1 uv run python manage.py test` for evals, ws frames, agent tools, consumers, grounding - [ ] Manual: with `ALLOW_AGENTIC_TASKS=false`, chat identical to today - [ ] Manual: status frames visible in FE with #96 branch - [ ] Manual (GPU): `python manage.py run_evals --runs 3` - [ ] Manual: `ALLOW_AGENTIC_TASKS=true` multi-step research prompt creates AgentRun + framesReviewed-on: #71
80 lines
2.8 KiB
YAML
80 lines
2.8 KiB
YAML
services:
|
|
db:
|
|
image: postgres:16-alpine
|
|
environment:
|
|
POSTGRES_DB: chat_backend
|
|
POSTGRES_USER: chat_backend
|
|
POSTGRES_PASSWORD: chat_backend
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U chat_backend -d chat_backend"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 10
|
|
start_period: 10s
|
|
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "8003:8000"
|
|
# No required env_file — CI has no .env. Defaults below; for local secrets:
|
|
# docker compose --env-file .env up
|
|
#
|
|
# Do NOT interpolate ${DATABASE_URL} here. On the Act runner / control node that
|
|
# var often points at shared prod/beta Postgres; compose would bake it into
|
|
# containerized tests. Use COMPOSE_DATABASE_URL only if you need to override.
|
|
environment:
|
|
DJANGO_ENV: ${DJANGO_ENV:-dev}
|
|
DJANGO_SECRET_KEY: ${DJANGO_SECRET_KEY:-dev-only-change-me}
|
|
DJANGO_DEBUG: ${DJANGO_DEBUG:-true}
|
|
DJANGO_ALLOWED_HOSTS: ${DJANGO_ALLOWED_HOSTS:-localhost,127.0.0.1,0.0.0.0,testserver}
|
|
DATABASE_URL: ${COMPOSE_DATABASE_URL:-postgres://chat_backend:chat_backend@db:5432/chat_backend}
|
|
OLLAMA_BASE_URL: ${OLLAMA_BASE_URL:-http://10.0.0.128:11434}
|
|
SKIP_RAG_INIT: ${SKIP_RAG_INIT:-1}
|
|
REDIS_URL: ${REDIS_URL:-}
|
|
ALLOW_AGENTIC_TASKS: ${ALLOW_AGENTIC_TASKS:-false}
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
|
|
# Optional — only needed when REDIS_URL is set (multi-worker channel layer
|
|
# fan-out + Celery broker for agent runs, #63). Not started by default
|
|
# `docker compose up` unless the `agentic` profile is selected:
|
|
# docker compose --profile agentic up
|
|
redis:
|
|
image: redis:7-alpine
|
|
profiles: ["agentic"]
|
|
ports:
|
|
- "6379:6379"
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "ping"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 10
|
|
|
|
# Celery worker for long-running agent tasks (#63). Only useful once
|
|
# REDIS_URL/CELERY_BROKER_URL point at the `redis` service above.
|
|
worker:
|
|
build: .
|
|
profiles: ["agentic"]
|
|
command: ["uv", "run", "celery", "-A", "llm_be", "worker", "--loglevel=info"]
|
|
environment:
|
|
DJANGO_ENV: ${DJANGO_ENV:-dev}
|
|
DJANGO_SECRET_KEY: ${DJANGO_SECRET_KEY:-dev-only-change-me}
|
|
DJANGO_ALLOWED_HOSTS: ${DJANGO_ALLOWED_HOSTS:-localhost,127.0.0.1,0.0.0.0,testserver}
|
|
DATABASE_URL: ${COMPOSE_DATABASE_URL:-postgres://chat_backend:chat_backend@db:5432/chat_backend}
|
|
OLLAMA_BASE_URL: ${OLLAMA_BASE_URL:-http://10.0.0.128:11434}
|
|
SKIP_RAG_INIT: "1"
|
|
REDIS_URL: ${REDIS_URL:-redis://redis:6379/0}
|
|
CELERY_BROKER_URL: ${CELERY_BROKER_URL:-redis://redis:6379/0}
|
|
ALLOW_AGENTIC_TASKS: ${ALLOW_AGENTIC_TASKS:-true}
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_healthy
|
|
|
|
volumes:
|
|
postgres_data:
|