summaryrefslogtreecommitdiff
path: root/lua/ache/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'lua/ache/plugins')
-rw-r--r--lua/ache/plugins/llm/cursortab.lua14
1 files changed, 6 insertions, 8 deletions
diff --git a/lua/ache/plugins/llm/cursortab.lua b/lua/ache/plugins/llm/cursortab.lua
index 45a1aac..c229e74 100644
--- a/lua/ache/plugins/llm/cursortab.lua
+++ b/lua/ache/plugins/llm/cursortab.lua
@@ -1,16 +1,14 @@
return {
"leonardcser/cursortab.nvim",
+ -- version = "*", -- Use latest tagged version for more stability
build = "cd server && go build",
- enabled = false,
config = function()
require("cursortab").setup({
- provider = "sweep",
- provider_url = "http://192.168.1.11:8000",
- provider_model = "sweep-next-edit-1.5b",
- max_context_tokens = 0, -- Max tokens to send as context (0 = no limit)
- provider_temperature = 0.0,
- provider_max_tokens = 512,
- provider_top_k = 10,
+ provider = {
+ type = "zeta",
+ url = "https://ia.ache.one/completion",
+ api_key_env = "IA_ACHE_ONE_BEARER",
+ },
})
end,
}