add more type in datatype summary

This commit is contained in:
2026-03-09 02:59:32 +07:00
parent 2c2f8f41a1
commit feadfc3456

View File

@@ -1318,5 +1318,11 @@ The Julia implementation serves as the **ground truth** for API design and behav
| Datatype | Serialization | Use Case | Encoding |
|----------|---------------|----------|----------|
| `text` | UTF-8 bytes | Text messages, chat content | `utf-8` → `base64` |
| `dictionary` | JSON | Structured key-value data, config | `json` → `base64` |
| `arrowtable` | Apache Arrow IPC | Large tabular data, schema-preserving | `arrow-ipc` → `base64` |
| `jsontable` | JSON | Small/medium tabular data, human-readable | `json` → `base64` |
| `image` | Binary | Image files (JPEG, PNG, etc.) | `binary` → `base64` |
| `audio` | Binary | Audio files (WAV, MP3, etc.) | `binary` → `base64` |
| `video` | Binary | Video files (MP4, AVI, etc.) | `binary` → `base64` |
| `binary` | Binary | Generic binary data, files | `binary` → `base64` |