| 123456789101112131415161718192021222324252627282930313233 |
- AGENT_PLATFORM_PROVIDER_BASE_URL=https://api.openai.com/v1
- AGENT_PLATFORM_PROVIDER_API_KEY=replace-me
- AGENT_PLATFORM_DEFAULT_MODEL=gpt-4o-mini
- AGENT_PLATFORM_POSTGRES_USER=agent_platform
- AGENT_PLATFORM_POSTGRES_PASSWORD=agent_platform
- AGENT_PLATFORM_POSTGRES_DB=agent_platform
- AGENT_PLATFORM_WORKFLOW_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/workflow_service
- AGENT_PLATFORM_SESSION_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/session_service
- AGENT_PLATFORM_RUNTIME_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/runtime_service
- AGENT_PLATFORM_TOOL_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/tool_service
- AGENT_PLATFORM_AGENT_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/agent_service
- AGENT_PLATFORM_MEMORY_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/memory_service
- AGENT_PLATFORM_TEAM_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/team_service
- AGENT_PLATFORM_SKILL_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/skill_service
- AGENT_PLATFORM_HUMAN_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/human_service
- AGENT_PLATFORM_KNOWLEDGE_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/knowledge_service
- AGENT_PLATFORM_EVENT_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/event_service
- AGENT_PLATFORM_AUTH_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/auth_service
- AGENT_PLATFORM_SCHEDULER_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/scheduler_service
- AGENT_PLATFORM_API_GATEWAY_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/api_gateway
- AGENT_PLATFORM_REDIS_URL=redis://redis:6379/0
- AGENT_PLATFORM_EMBEDDING_PROVIDER=local
- AGENT_PLATFORM_EMBEDDING_BASE_URL=
- AGENT_PLATFORM_EMBEDDING_API_KEY=
- AGENT_PLATFORM_EMBEDDING_MODEL=local-hash-v1
- AGENT_PLATFORM_MAX_TIMEOUT_SECONDS=30
- AGENT_PLATFORM_AUTH_REQUIRED=false
- AGENT_PLATFORM_AUTHZ_REQUIRED=false
- AGENT_PLATFORM_WORKER_POLL_INTERVAL_SECONDS=1
- AGENT_PLATFORM_WORKER_LEASE_SECONDS=300
- AGENT_PLATFORM_SCHEDULER_WORKER_CLAIM_LIMIT=20
- AGENT_PLATFORM_AGENT_WORKER_DRY_RUN=false
- AGENT_PLATFORM_TEAM_WORKER_DRY_RUN=true
|