(body: unknown)
| 410 | } |
| 411 | |
| 412 | function modelFrom(body: unknown) { |
| 413 | if (!body || typeof body !== "object") return "test-model" |
| 414 | if (!("model" in body) || typeof body.model !== "string") return "test-model" |
| 415 | return body.model |
| 416 | } |
| 417 | |
| 418 | function send(item: Sse) { |
| 419 | const head = bytes(item.head) |