.env.example 2.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. AGENT_PLATFORM_PROVIDER_BASE_URL=https://api.openai.com/v1
  2. AGENT_PLATFORM_PROVIDER_API_KEY=replace-me
  3. AGENT_PLATFORM_DEFAULT_MODEL=gpt-4o-mini
  4. AGENT_PLATFORM_POSTGRES_USER=agent_platform
  5. AGENT_PLATFORM_POSTGRES_PASSWORD=agent_platform
  6. AGENT_PLATFORM_POSTGRES_DB=agent_platform
  7. AGENT_PLATFORM_WORKFLOW_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/workflow_service
  8. AGENT_PLATFORM_SESSION_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/session_service
  9. AGENT_PLATFORM_RUNTIME_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/runtime_service
  10. AGENT_PLATFORM_TOOL_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/tool_service
  11. AGENT_PLATFORM_AGENT_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/agent_service
  12. AGENT_PLATFORM_MEMORY_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/memory_service
  13. AGENT_PLATFORM_TEAM_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/team_service
  14. AGENT_PLATFORM_SKILL_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/skill_service
  15. AGENT_PLATFORM_HUMAN_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/human_service
  16. AGENT_PLATFORM_KNOWLEDGE_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/knowledge_service
  17. AGENT_PLATFORM_EVENT_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/event_service
  18. AGENT_PLATFORM_AUTH_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/auth_service
  19. AGENT_PLATFORM_SCHEDULER_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/scheduler_service
  20. AGENT_PLATFORM_API_GATEWAY_DATABASE_URL=postgresql+psycopg://agent_platform:agent_platform@postgres:5432/api_gateway
  21. AGENT_PLATFORM_REDIS_URL=redis://redis:6379/0
  22. AGENT_PLATFORM_EMBEDDING_PROVIDER=local
  23. AGENT_PLATFORM_EMBEDDING_BASE_URL=
  24. AGENT_PLATFORM_EMBEDDING_API_KEY=
  25. AGENT_PLATFORM_EMBEDDING_MODEL=local-hash-v1
  26. AGENT_PLATFORM_MAX_TIMEOUT_SECONDS=30
  27. AGENT_PLATFORM_AUTH_REQUIRED=false
  28. AGENT_PLATFORM_AUTHZ_REQUIRED=false
  29. AGENT_PLATFORM_INTERNAL_SERVICE_AUTH_REQUIRED=false
  30. AGENT_PLATFORM_INTERNAL_SERVICE_TOKEN=replace-with-shared-internal-token
  31. AGENT_PLATFORM_WORKER_POLL_INTERVAL_SECONDS=1
  32. AGENT_PLATFORM_WORKER_LEASE_SECONDS=300
  33. AGENT_PLATFORM_SCHEDULER_WORKER_CLAIM_LIMIT=20
  34. AGENT_PLATFORM_AGENT_WORKER_DRY_RUN=false
  35. AGENT_PLATFORM_TEAM_WORKER_DRY_RUN=true