-
Notifications
You must be signed in to change notification settings - Fork 778
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
Open any file in neovim 0.11.4 then as "Can you check again?" like the following:
● Datetime: 2025-11-22 17:33:05
● Model: copilot/claude-sonnet-4
● Selected files:
○ /home/bbizar/.tmux.conf
▋ Can you check again?
Error: {
code = "invalid_tool_call_format",
message = "Invalid JSON format in tool call
arguments"
}
To reproduce
Not applicable, there is no code needed here. Just ask "Can you check again" after opening the neovim then aa then type in the chat window
Expected behavior
The tool calling without any arguements should work fine without throwing the error.
Installation method
Use lazy.nvim:
return {
{
"yetone/avante.nvim",
lazy = true,
version = false,
opts = {
provider = "copilot",
mode = "agentic",
providers = {
copilot = {
model = "claude-haiku-4.5",
auto_select_model = false,
},
},
hints = { enabled = true },
selector = {
provider = "telescope",
},
behaviour = {
auto_suggestions = false,
auto_set_highlight_group = true,
auto_set_keymaps = true,
auto_apply_diff_after_generation = false,
support_paste_from_clipboard = false,
enable_token_counting = false,
auto_approve_tool_permissions = false,
enable_fastapply = false,
},
},
build = "make",
dependencies = {
"nvim-lua/plenary.nvim",
"MunifTanjim/nui.nvim",
"nvim-telescope/telescope.nvim",
"stevearc/dressing.nvim",
"nvim-tree/nvim-web-devicons",
"nvim-treesitter/nvim-treesitter",
"zbirenbaum/copilot.lua",
{
'MeanderingProgrammer/render-markdown.nvim',
ft = { "markdown", "Avante" },
},
},
},
}Environment
NVIM v0.11.5
Build type: RelWithDebInfo
LuaJIT 2.1.1741730670
Run "nvim -V1 -v" for more info
uname: Linux
Ubuntu 24.04.01
Repro
-- Not sure if this is applicable --
vim.env.LAZY_STDPATH = ".repro"
load(vim.fn.system("curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua"))()
require("lazy.minit").repro({
spec = {
-- add any other plugins here
},
})ns-brianliu, ajaxbits, ben-hampson and vonhyou
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working