Refactor read-file and support images. (#480)

This commit is contained in:
Jacob Richman
2025-05-29 22:30:18 +00:00
committed by GitHub
parent 166e553522
commit 2d5f781de6
13 changed files with 1475 additions and 260 deletions
+1 -2
View File
@@ -5,7 +5,6 @@
*/
import {
Part,
PartListUnion,
GenerateContentResponse,
FunctionCall,
@@ -57,7 +56,7 @@ export interface ToolCallRequestInfo {
export interface ToolCallResponseInfo {
callId: string;
responsePart: Part;
responseParts: PartListUnion;
resultDisplay: ToolResultDisplay | undefined;
error: Error | undefined;
}