-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Closed
Labels
Description
We are currently filtering out images that have no data, which changes the index mapping from the input images to the output images.
ai/packages/ai/src/prompt/convert-to-language-model-prompt.ts
Lines 248 to 255 in c96db45
| .filter( | |
| ( | |
| downloadedFile, | |
| ): downloadedFile is { | |
| mediaType: string | undefined; | |
| data: Uint8Array; | |
| } => downloadedFile?.data != null, | |
| ) |