(
toolName: string,
input: { [key: string]: string | number },
)
| 4323 | } |
| 4324 | |
| 4325 | function createToolUseMessage( |
| 4326 | toolName: string, |
| 4327 | input: { [key: string]: string | number }, |
| 4328 | ): UserMessage { |
| 4329 | return createUserMessage({ |
| 4330 | content: `Called the ${toolName} tool with the following input: ${jsonStringify(input)}`, |
| 4331 | isMeta: true, |
| 4332 | }) |
| 4333 | } |
| 4334 | |
| 4335 | export function createSystemMessage( |
| 4336 | content: string, |
no test coverage detected