type ModalitiesArrayToUnion<T> = T[number];Defined in: packages/ai/src/types.ts:312
Helper type to convert a readonly array of modalities to a union type. e.g., readonly ['text', 'image'] -> 'text' | 'image'
T extends ReadonlyArray\<[`Modality`](Modality.md)\>