diff options
| author | ache <ache@ache.one> | 2025-05-14 18:25:56 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2025-05-14 18:25:56 +0200 |
| commit | b2ff4ae1561f86f49d8df62111c68faa8187812e (patch) | |
| tree | f30c3804b54d1c651e61b1b91e0bf35548827a16 /lua/ache/plugins/llm | |
| parent | Add a shortcut to show all shortkeys (diff) | |
Add an option to quickly disable any plugin
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, |