Function
textDelta
(sessionID: string, messageID: string, partID: string, delta: string)
Source from the content-addressed store, hash-verified
| 114 | } |
| 115 | |
| 116 | function textDelta(sessionID: string, messageID: string, partID: string, delta: string): Event { |
| 117 | return { |
| 118 | id: `evt_${sessionID}_${messageID}_${partID}_${delta}`, |
| 119 | type: "message.part.delta", |
| 120 | properties: { |
| 121 | sessionID, |
| 122 | messageID, |
| 123 | partID, |
| 124 | field: "text", |
| 125 | delta, |
| 126 | }, |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | function partUpdated(sessionID: string, messageID: string, partID: string, type: DeltaPartType): Event { |
| 131 | return { |
Tested by
no test coverage detected