Function
delta
(messageID: string, partID: string, value: string)
Source from the content-addressed store, hash-verified
| 81 | } |
| 82 | |
| 83 | function delta(messageID: string, partID: string, value: string) { |
| 84 | return { |
| 85 | type: "message.part.delta", |
| 86 | properties: { |
| 87 | sessionID: "session-1", |
| 88 | messageID, |
| 89 | partID, |
| 90 | field: "text", |
| 91 | delta: value, |
| 92 | }, |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | function tool(input: { id: string; messageID: string; tool: string; state: Record<string, unknown>; callID?: string }) { |
| 97 | return { |
Tested by
no test coverage detected