Type definition for multimodal data structure.
| 431 | |
| 432 | |
| 433 | class MultimodalData(TypedDict): |
| 434 | """Type definition for multimodal data structure.""" |
| 435 | modality: str |
| 436 | data: Any |
| 437 | is_embedding: bool |
| 438 | |
| 439 | |
| 440 | class ConversationMessage(TypedDict): |
no outgoing calls
no test coverage detected