(part: ToolPart)
| 156 | } |
| 157 | |
| 158 | function toolUpdated(part: ToolPart): Event { |
| 159 | return { |
| 160 | id: `evt_${part.sessionID}_${part.messageID}_${part.id}_${part.state.status}`, |
| 161 | type: "message.part.updated", |
| 162 | properties: { |
| 163 | sessionID: part.sessionID, |
| 164 | time: Date.now(), |
| 165 | part, |
| 166 | }, |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | function assistantMessage(sessionID: string, messageID: string, partID: string, type: DeltaPartType) { |
| 171 | return { |