fix(sdk-js): AIMessage tool call args type (#3741)

This commit is contained in:
David Duong
2025-03-07 21:35:04 +01:00
committed by GitHub
+1 -1
View File
@@ -26,7 +26,7 @@ export type AIMessage = {
tool_calls?:
| {
name: string;
args: { [x: string]: { [x: string]: any } };
args: { [x: string]: any };
id?: string | undefined;
type?: "tool_call" | undefined;
}[]