diff --git a/lua/plugins/avante.lua b/lua/plugins/avante.lua index cbee33a..e83cf4f 100644 --- a/lua/plugins/avante.lua +++ b/lua/plugins/avante.lua @@ -8,34 +8,6 @@ return { openai = { api_key_name = "cmd:cat ~/.openai", }, - provider = "ollama", - vendors = { - ---@type AvanteProvider - ollama = { - ["local"] = true, - endpoint = "127.0.0.1:11434/v1", - model = "codegemma", - parse_curl_args = function(opts, code_opts) - return { - url = opts.endpoint .. "/chat/completions", - headers = { - ["Accept"] = "application/json", - ["Content-Type"] = "application/json", - }, - body = { - model = opts.model, - messages = require("avante.providers").copilot.parse_message(code_opts), -- you can make your own message, but this is very advanced - max_tokens = 2048, - stream = true, - }, - } - end, - parse_response_data = function(data_stream, event_state, opts) - require("avante.providers").openai.parse_response(data_stream, event_state, opts) - end, - }, - }, - }, }, -- if you want to build from source then do `make BUILD_FROM_SOURCE=true` build = "make",