Skip to content

Commit b4b65bf

Browse files
committed
add 'ChatQwen3-8B' as default agent (thinking-disabled qwen model)
1 parent f8a6c87 commit b4b65bf

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

lua/gp/config.lua

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,19 @@ local config = {
196196
-- system prompt (use this to specify the persona/role of the AI)
197197
system_prompt = "You are a general AI assistant.",
198198
},
199+
{
200+
provider = "ollama",
201+
name = "ChatQwen3-8B",
202+
chat = true,
203+
command = false,
204+
-- string with model name or table with model name and parameters
205+
model = {
206+
model = "qwen3:8b",
207+
think = false, -- toggle thinking in ollama's "thinkings" models
208+
},
209+
-- system prompt (use this to specify the persona/role of the AI)
210+
system_prompt = "You are a general AI assistant.",
211+
},
199212
{
200213
provider = "lmstudio",
201214
name = "ChatLMStudio",

0 commit comments

Comments
 (0)