This commit is contained in:
xunbu
2025-09-29 15:08:17 +08:00
parent aa38413e28
commit f8eebabf4c

View File

@@ -39,7 +39,7 @@ def get_thinking_mode_by_model_id(model_id: str) -> tuple[str, str | dict, str |
model_id = model_id.strip().lower() model_id = model_id.strip().lower()
if "glm-4.5" in model_id: if "glm-4.5" in model_id:
return thinking_mode["bigmodel"] return thinking_mode["bigmodel"]
elif "qwen/qwen3" in model_id: elif "qwen3" in model_id:
return thinking_mode["aliyun"] return thinking_mode["aliyun"]
elif "seed-1-6" in model_id: elif "seed-1-6" in model_id:
return thinking_mode["volces"] return thinking_mode["volces"]