diff options
Diffstat (limited to 'lua/ache/plugins/llm')
| -rw-r--r-- | lua/ache/plugins/llm/gp.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lua/ache/plugins/llm/gp.lua b/lua/ache/plugins/llm/gp.lua index 7bb755f..23550c8 100644 --- a/lua/ache/plugins/llm/gp.lua +++ b/lua/ache/plugins/llm/gp.lua @@ -1,17 +1,17 @@ return { "robitx/gp.nvim", - enable = true, + enabled = true, config = function() local conf = { -- For customization, refer to Install > Configuration in the Documentation/Readme providers = { - ollama = { - endpoint = "http://localhost:11434/v1/chat/completions", + foxllama = { + endpoint = "https://box.ache.one/brain/v1/chat/completions", }, }, agents = { { - provider = "ollama", + provider = "foxllama", name = "Codestrall", chat = true, command = false, @@ -26,7 +26,7 @@ return { system_prompt = require("gp.defaults").code_system_prompt, }, { - provider = "ollama", + provider = "foxllama", name = "Chatstrall", chat = true, command = false, @@ -53,7 +53,7 @@ return { disable = true, }, { - provider = "ollama", + provider = "foxllama", name = "ChatDeepSeek-coder", chat = true, command = false, |