fix: update claude version with response handling correction

This commit is contained in:
2025-09-28 17:02:33 +08:00
parent 271fa45937
commit 905054e3b5
2 changed files with 17 additions and 7 deletions

View File

@@ -8,6 +8,13 @@ export interface BaseTool {
};
}
export type ToolUseBlock = {
type: 'tool_use';
id: string;
name: string;
input: Record<string, any>;
};
export interface NewsletterTool {
title: string;
content: string;