This commit is contained in:
van
2025-09-16 15:24:01 +08:00
parent 0055ea2df7
commit 54d0df9627

View File

@@ -28,7 +28,7 @@ else:
DEFAULT_WORKER_NUM = 256
# [step 3]>> 模型选择是 (注意: LLM_MODEL是默认选中的模型, 它*必须*被包含在AVAIL_LLM_MODELS列表中 )
LLM_MODEL = "gpt-4-32k" # 可选 ↓↓↓
LLM_MODEL = "gpt-4" # 可选 ↓↓↓
AVAIL_LLM_MODELS = ["deepseek-chat", "deepseek-coder", "deepseek-reasoner",
"gpt-4-1106-preview", "gpt-4-turbo-preview", "gpt-4-vision-preview",
"gpt-4o", "gpt-4o-mini", "gpt-4-turbo", "gpt-4-turbo-2024-04-09",
@@ -106,7 +106,7 @@ AVAIL_FONTS = [
# 默认的系统提示词system prompt
INIT_SYS_PROMPT = "Serve me as a writing and programming assistant."
INIT_SYS_PROMPT = ""
# 对话窗的高度 仅在LAYOUT="TOP-DOWN"时生效)