Fix Antigravity

This commit is contained in:
decolua
2026-01-12 17:59:53 +07:00
parent 5d092f3710
commit 509b68fb75
2 changed files with 3 additions and 4 deletions
@@ -270,8 +270,7 @@ function openaiToClaudeRequestForAntigravity(model, body, stream) {
if (result.tools && Array.isArray(result.tools)) {
result.tools = result.tools.map(tool => {
if (tool.name) {
const originalName = tool.name.charAt(0).toLowerCase() + tool.name.slice(1);
return { ...tool, name: originalName };
return { ...tool, name: tool.name };
}
return tool;
});