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

This commit is contained in:
bracesproul
2025-03-07 12:31:18 -08:00
parent c3df8bd500
commit 4b25e28e3e
+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;
}[]