app: allow more agentic models to use web search

This commit is contained in:
ParthSareen 2025-12-23 20:28:31 -05:00
parent 18fdcc94e5
commit 2053ae5199
1 changed files with 4 additions and 1 deletions

View File

@ -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