fix(kimi-acp): kimi acp tool call update is missing the kind field (#2814)

This commit is contained in:
yetone
2025-10-31 20:41:12 +08:00
committed by GitHub
parent 15ef2a012c
commit 7f48770e66
5 changed files with 22 additions and 9 deletions

View File

@@ -254,7 +254,7 @@ M._defaults = {
},
["claude-code"] = {
command = "npx",
args = { "@zed-industries/claude-code-acp" },
args = { "-y", "@zed-industries/claude-code-acp" },
env = {
NODE_NO_WARNINGS = "1",
ANTHROPIC_API_KEY = os.getenv("ANTHROPIC_API_KEY"),
@@ -280,6 +280,10 @@ M._defaults = {
command = "opencode",
args = { "acp" },
},
["kimi-cli"] = {
command = "kimi",
args = { "--acp" },
},
},
---To add support for custom provider, follow the format below
---See https://github.com/yetone/avante.nvim/wiki#custom-providers for more details