now using hunter alpha with openrouter as the model of choice

This commit is contained in:
aminnairi
2026-03-18 23:00:38 +01:00
parent 5fce7963d0
commit 1629f014d8
+7 -14
View File
@@ -1,23 +1,16 @@
return {
"yetone/avante.nvim",
opts = {
---@alias Provider "claude" | "openai" | "azure" | "gemini" | "cohere" | "copilot" | string
provider = "ollama",
auto_suggestions_provider = "ollama",
provider = "openrouter",
auto_suggestions_provider = "openrouter",
providers = {
claude = {
endpoint = "https://api.anthropic.com",
api_key_name = "ANTHROPIC_API_KEY",
extra_request_body = {
temperature = 0,
max_tokens = 8192,
},
},
ollama = {
endpoint = "http://ollama.nairi.local",
model = "qwen2.5-coder:7b",
openrouter = {
__inherited_from = "openai",
endpoint = "https://openrouter.ai/api/v1",
model = "openrouter/hunter-alpha",
extra_request_body = {
temperature = 0,
max_tokens = 32768,
},
},
},