| 34 | export type ChatModel = ModelType; |
| 35 | |
| 36 | export interface MultimodalContent { |
| 37 | type: "text" | "image_url"; |
| 38 | text?: string; |
| 39 | image_url?: { |
| 40 | url: string; |
| 41 | }; |
| 42 | } |
| 43 | |
| 44 | export interface MultimodalContentForAlibaba { |
| 45 | text?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected