(
content: string,
toolCallId: string,
)
| 199 | }); |
| 200 | |
| 201 | const createToolMessage = ( |
| 202 | content: string, |
| 203 | toolCallId: string, |
| 204 | ): ChatMessage => ({ |
| 205 | role: "tool", |
| 206 | content, |
| 207 | toolCallId, |
| 208 | }); |
| 209 | |
| 210 | const createToolCall = ( |
| 211 | id: string, |