14 lines
348 B
Plaintext
14 lines
348 B
Plaintext
|
|
# OpenAI-compatible API 配置
|
||
|
|
# 适配任意兼容 /v1/chat/completions 且支持 tools/function calling 的服务。
|
||
|
|
|
||
|
|
OPENAI_API_KEY=your-api-key-here
|
||
|
|
OPENAI_BASE_URL=https://api.openai.com/v1
|
||
|
|
MODEL_NAME=gpt-4.1-mini
|
||
|
|
|
||
|
|
# 可选配置
|
||
|
|
OPENAI_TIMEOUT=120
|
||
|
|
OPENAI_TEMPERATURE=0.2
|
||
|
|
CORE_AGENT_MAX_ITERATIONS=12
|
||
|
|
USER_NAME=User
|
||
|
|
AGENT_NAME=MeetingAgent
|