mirror of
https://github.com/katanemo/plano.git
synced 2026-07-14 16:22:12 +02:00
- Replace Open WebUI with AnythingLLM in travel_agents demo - Switch all demo plano services from local build to katanemo/plano:latest - Update llm_routing run_demo.sh to remove planoai CLI calls (plano now in docker-compose) - Clean up stale Open WebUI references in .gitignore and http_filter/http.rest Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
66 lines
1.9 KiB
YAML
66 lines
1.9 KiB
YAML
|
|
services:
|
|
plano:
|
|
image: katanemo/plano:latest
|
|
ports:
|
|
- "12000:12000"
|
|
- "8001:8001"
|
|
environment:
|
|
- PLANO_CONFIG_PATH=/config/config.yaml
|
|
- OPENAI_API_KEY=${OPENAI_API_KEY:?OPENAI_API_KEY environment variable is required but not set}
|
|
volumes:
|
|
- ./config.yaml:/app/plano_config.yaml
|
|
- /etc/ssl/cert.pem:/etc/ssl/cert.pem
|
|
weather-agent:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: weather-agent
|
|
restart: always
|
|
ports:
|
|
- "10510:10510"
|
|
environment:
|
|
- LLM_GATEWAY_ENDPOINT=http://host.docker.internal:12000/v1
|
|
command: ["uv", "run", "python", "src/travel_agents/weather_agent.py"]
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
flight-agent:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: flight-agent
|
|
restart: always
|
|
ports:
|
|
- "10520:10520"
|
|
environment:
|
|
- LLM_GATEWAY_ENDPOINT=http://host.docker.internal:12000/v1
|
|
- AEROAPI_KEY=${AEROAPI_KEY:? AEROAPI_KEY environment variable is required but not set}
|
|
command: ["uv", "run", "python", "src/travel_agents/flight_agent.py"]
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
anythingllm:
|
|
image: mintplexlabs/anythingllm
|
|
restart: always
|
|
ports:
|
|
- "3001:3001"
|
|
cap_add:
|
|
- SYS_ADMIN
|
|
environment:
|
|
- STORAGE_DIR=/app/server/storage
|
|
- LLM_PROVIDER=generic-openai
|
|
- GENERIC_OPEN_AI_BASE_PATH=http://plano:8001/v1
|
|
- GENERIC_OPEN_AI_MODEL_PREF=gpt-4o-mini
|
|
- GENERIC_OPEN_AI_MODEL_TOKEN_LIMIT=128000
|
|
- GENERIC_OPEN_AI_API_KEY=sk-placeholder
|
|
depends_on:
|
|
- weather-agent
|
|
- flight-agent
|
|
jaeger:
|
|
build:
|
|
context: ../../shared/jaeger
|
|
container_name: jaeger
|
|
restart: always
|
|
ports:
|
|
- "16686:16686" # Jaeger UI
|
|
- "4317:4317" # OTLP gRPC receiver
|
|
- "4318:4318" # OTLP HTTP receiver
|