content_pipeline / docker-compose.yml
AI Engineer
Deploy Streamlit Content Agent
0b29030
Raw
History Blame Contribute Delete
438 Bytes
services:
content-agent:
build: .
ports:
- "8501:8501"
environment:
# Leave MOCK_MODE=true to run with zero keys. Set false + provide a key
# to go live (users can also paste a key in the UI).
MOCK_MODE: "true"
# LLM_PROVIDER: "groq"
# LLM_API_KEY: "your-key"
# LLM_MODEL: "llama-3.3-70b-versatile"
CRAWL_MAX_PAGES: "40"
CRAWL_MAX_DEPTH: "2"
restart: unless-stopped