plugin upgrades and fuckery.
This commit is contained in:
@@ -7,29 +7,28 @@ return {
|
||||
-- for example
|
||||
provider = "ollama",
|
||||
mode = "legacy",
|
||||
disable_tools = true,
|
||||
behaviour = {
|
||||
enable_cursor_planning_mode = true, -- enable cursor planning mode!
|
||||
},
|
||||
auto_suggestions_provider = nil,
|
||||
memory_summary_provider = nil,
|
||||
providers = {
|
||||
ollama = {
|
||||
endpoint = "http://gpu.dighist.geschichte.hu-berlin.de:11434",
|
||||
model = "cogito:32b", -- your desired model (or use gpt-4o, etc.)
|
||||
timeout = 30000, -- Timeout in milliseconds, increase this for reasoning models
|
||||
temperature = 0,
|
||||
max_completion_tokens = 40000, -- Increase this to include reasoning tokens (for reasoning models)
|
||||
stream = true,
|
||||
thinking = true,
|
||||
disable_tools = true,
|
||||
model = "qwen3:30b",
|
||||
timeout = 300000, -- Timeout in milliseconds, increase this for reasoning models
|
||||
extra_request_body = {
|
||||
stream = false,
|
||||
think = false,
|
||||
keep_alive = -1,
|
||||
options = {
|
||||
keep_alive = -1,
|
||||
temperature = 0.75,
|
||||
num_ctx = 40000,
|
||||
},
|
||||
},
|
||||
--system_prompt = "Enable deep thinking subroutine.",
|
||||
-- reasoning_effort = "high", -- low|medium|high, only used for reasoning models
|
||||
},
|
||||
deepthink = {
|
||||
__inherited_from = "ollama",
|
||||
model = "qwen3:32b",
|
||||
max_completion_tokens = 40000,
|
||||
reasoning_effort = "high",
|
||||
disable_tools = true,
|
||||
is_env_set = function()
|
||||
return true
|
||||
end,
|
||||
},
|
||||
},
|
||||
rag_service = {
|
||||
@@ -40,6 +39,13 @@ return {
|
||||
embed_model = "nomic-embed-text", -- The embedding model to use for RAG service
|
||||
endpoint = "http://gpu.dighist.geschichte.hu-berlin.de:11434", -- The API endpoint for RAG service
|
||||
},
|
||||
selector = {
|
||||
provider = "snacks",
|
||||
},
|
||||
input = {
|
||||
provider = "snacks",
|
||||
},
|
||||
disabled_tools = { "web_search" },
|
||||
},
|
||||
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
|
||||
build = "make",
|
||||
@@ -50,7 +56,7 @@ return {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"MunifTanjim/nui.nvim",
|
||||
--- The below dependencies are optional,
|
||||
"echasnovski/mini.pick", -- for file_selector provider mini.pick
|
||||
"nvim-mini/mini.pick", -- for file_selector provider mini.pick
|
||||
"nvim-telescope/telescope.nvim", -- for file_selector provider telescope
|
||||
"hrsh7th/nvim-cmp", -- autocompletion for avante commands and mentions
|
||||
"ibhagwan/fzf-lua", -- for file_selector provider fzf
|
||||
|
Reference in New Issue
Block a user