(toolCallId: string, output: string | ContentPart[])
| 211 | |
| 212 | /** Create a tool result message. */ |
| 213 | export function createToolMessage(toolCallId: string, output: string | ContentPart[]): Message { |
| 214 | const content: ContentPart[] = |
| 215 | typeof output === 'string' ? [{ type: 'text', text: output }] : output; |
| 216 | return { |
| 217 | role: 'tool', |
| 218 | content, |
| 219 | toolCalls: [], |
| 220 | toolCallId, |
| 221 | }; |
| 222 | } |
no outgoing calls