(part: SessionToolPart)
| 323 | } |
| 324 | |
| 325 | function toolUpdated(part: SessionToolPart): SdkEvent { |
| 326 | return { |
| 327 | id: `evt-${part.id}-updated`, |
| 328 | type: "message.part.updated", |
| 329 | properties: { |
| 330 | sessionID: part.sessionID, |
| 331 | part, |
| 332 | time: 1, |
| 333 | }, |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | function textDelta(messageID: string, partID: string, delta: string, sessionID = "session-1"): SdkEvent { |
| 338 | return { |
no outgoing calls
no test coverage detected