Agent loop defensive (#3554)

Co-authored-by: Douwe Osinga <douwe@squareup.com>
This commit is contained in:
Douwe Osinga
2025-07-22 18:21:47 +02:00
committed by GitHub
parent b3cd03ef61
commit 9f356e7009
19 changed files with 349 additions and 773 deletions
+2 -2
View File
@@ -463,12 +463,12 @@ export type RedactedThinkingContent = {
};
export type ResourceContents = {
mime_type?: string | null;
mime_type?: string;
text: string;
uri: string;
} | {
blob: string;
mime_type?: string | null;
mime_type?: string;
uri: string;
};