(mimeType: string)
| 200 | } |
| 201 | |
| 202 | function isOpenAIDocumentMimeType(mimeType: string): boolean { |
| 203 | return OPENAI_DOCUMENT_MIME_TYPES.has(mimeType) || isTextDocumentMimeType(mimeType) |
| 204 | } |
| 205 | |
| 206 | function getAttachmentContentType( |
| 207 | mimeType: string |
no test coverage detected