24 lines
562 B
Bash
24 lines
562 B
Bash
# OpenAI API配置
|
||
# OPENAI_API_KEY=
|
||
# OPENAI_API_BASE=https://api.openai.com/v1
|
||
# OPENAI_MODEL=gpt-4o
|
||
# OPENAI_MAX_TOKENS=4096
|
||
# OPENAI_TEMPERATURE=0.7
|
||
|
||
# Routin/Meteor API配置
|
||
# plan-开头的套餐Key会自动使用 https://api.routin.ai/plan/v1/messages
|
||
METEOR_API_KEY=plan-9e8e77c7990b450bafe706cded8a552b
|
||
CUSTOM_API_BASE=https://api.routin.ai/plan/v1
|
||
CUSTOM_MODEL=gpt-5.4-mini
|
||
|
||
# 模型提供商:openai, custom
|
||
MODEL_PROVIDER=custom
|
||
|
||
# 超时配置(秒)
|
||
AI_CONNECT_TIMEOUT=60
|
||
AI_READ_TIMEOUT=120
|
||
|
||
# 重试配置
|
||
AI_MAX_RETRIES=3
|
||
AI_RETRY_DELAY=2.0
|