13 lines
333 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
API 配置文件
修改这里来配置你的 API
"""
# API 配置
API_KEY = "sk-..." # 你的 API Key
BASE_URL = "https://api.openai.com/v1" # API 地址OpenAI 兼容)
MODEL = "gpt-4o-mini" # 模型名称
# 智能体配置
MAX_ITERATIONS = 4 # 最大迭代次数
TEMPERATURE = 0.3 # 温度参数(越低越确定)