forked from xiaohei/taiji-AI-PAD
35 lines
720 B
YAML
35 lines
720 B
YAML
# ConfigMap - 非敏感配置
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: taiji-config
|
|
namespace: taiji-ai
|
|
data:
|
|
# NATS配置
|
|
nats-url: "nats://nats:4222"
|
|
|
|
# LiteLLM配置
|
|
litellm-url: "http://litellm-gateway:4000"
|
|
litellm-config-path: "/app/config/litellm_simple.yaml"
|
|
|
|
# OpenRouter配置
|
|
openrouter-base-url: "https://openrouter.ai/api/v1"
|
|
|
|
# RapidAPI配置
|
|
rapidapi-host: "rapidapi.com"
|
|
rapidapi-base-url: "https://rapidapi.com"
|
|
|
|
# 应用配置
|
|
environment: "production"
|
|
debug: "false"
|
|
log-level: "INFO"
|
|
|
|
# 健康检查配置
|
|
health-check-interval: "30"
|
|
|
|
# 资源限制
|
|
max-agents-per-user: "100"
|
|
agent-execution-timeout: "300"
|
|
tool-execution-timeout: "60"
|
|
|