app: allow more agentic models to use web search
This commit is contained in:
parent
18fdcc94e5
commit
2053ae5199
|
|
@ -153,7 +153,10 @@ function ChatForm({
|
|||
const supportsWebSearch =
|
||||
modelLower.startsWith("gpt-oss") ||
|
||||
modelLower.startsWith("qwen3") ||
|
||||
modelLower.startsWith("deepseek-v3");
|
||||
modelLower.startsWith("deepseek-v3") ||
|
||||
modelLower.startsWith("kimi-k2") ||
|
||||
modelLower.startsWith("minimax") ||
|
||||
modelLower.startsWith("glm");
|
||||
// Use per-chat thinking level instead of global
|
||||
const thinkLevel: ThinkingLevel =
|
||||
settingsThinkLevel === "none" || !settingsThinkLevel
|
||||
|
|
|
|||
Loading…
Reference in New Issue