forked from xiaohei/taiji-AI-PAD
31 lines
753 B
YAML
31 lines
753 B
YAML
# ConfigMap for Taiji AI-PAD
|
||
apiVersion: v1
|
||
kind: ConfigMap
|
||
metadata:
|
||
name: taiji-config
|
||
namespace: taiji-ai
|
||
data:
|
||
# 应用环境配置
|
||
APP_ENV: "production"
|
||
LOG_LEVEL: "INFO"
|
||
|
||
# NATS配置
|
||
NATS_URL: "nats://nats:4222"
|
||
|
||
# LiteLLM网关配置
|
||
LITELLM_URL: "https://litellm.graystone-fb459c5d.southeastasia.azurecontainerapps.io"
|
||
|
||
# Agent Manager 配置(K8s Agent 管理服务,在 agent-manager namespace)
|
||
AGENT_MANAGER_URL: "http://agent-manager.agent-manager.svc.cluster.local:80"
|
||
AGENT_K8S_NAMESPACE: "ai-agents"
|
||
|
||
# OpenRouter配置
|
||
OPENROUTER_BASE_URL: "https://openrouter.ai/api/v1"
|
||
|
||
# RapidAPI配置
|
||
RAPIDAPI_HOST: "rapidapi.com"
|
||
|
||
# JWT配置
|
||
JWT_ALGORITHM: "HS256"
|
||
JWT_EXPIRE_MINUTES: "1440"
|