Compare commits

..

No commits in common. "618913553a236132e558d9df85200ed0f357dc19" and "ba28bef49a6ec11692d5bdb4949fc484139c8fa5" have entirely different histories.

View file

@ -5,22 +5,20 @@ return {
version = false, version = false,
opts = { opts = {
provider = "claude", provider = "claude",
providers = {
claude = { claude = {
model = "claude-sonnet-4-20250514", model = "claude-3-7-sonnet-latest",
api_key_name = "cmd:cat " .. vim.fn.expand("~/.anthropic"), api_key_name = "cmd:cat " .. vim.fn.expand("~/.anthropic"),
}, },
openai = { openai = {
model = "o4-mini", model = "o3-mini",
api_key_name = "cmd:cat " .. vim.fn.expand("~/.openai"),
extra_request_body = {
reasoning_effort = "high", reasoning_effort = "high",
api_key_name = "cmd:cat " .. vim.fn.expand("~/.openai"),
}, },
}, vendors = {
ollama = { ollama = {
__inherited_from = "openai", __inherited_from = "openai",
api_key_name = "", api_key_name = "",
endpoint = "http://127.0.0.1:11434", endpoint = "http://127.0.0.1:11434/v1",
model = "qwen2.5-coder", model = "qwen2.5-coder",
}, },
}, },
@ -28,12 +26,12 @@ return {
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true` -- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
build = "make", build = "make",
dependencies = { dependencies = {
"nvim-lua/plenary.nvim",
"MunifTanjim/nui.nvim",
"HakonHarnes/img-clip.nvim", "HakonHarnes/img-clip.nvim",
"MeanderingProgrammer/render-markdown.nvim", "MeanderingProgrammer/render-markdown.nvim",
"MunifTanjim/nui.nvim",
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", "nvim-tree/nvim-web-devicons",
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
"folke/snacks.nvim", "stevearc/dressing.nvim",
}, },
} }