From feadfc34565e5557051b84cd7d4321b6a2179e0c Mon Sep 17 00:00:00 2001 From: narawat Date: Mon, 9 Mar 2026 02:59:32 +0700 Subject: [PATCH] add more type in datatype summary --- docs/architecture.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/architecture.md b/docs/architecture.md index 8b57af8..2f04b01 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -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` |