(
toolName: string,
input: { [key: string]: string | number },
)
| 4423 | } |
| 4424 | |
| 4425 | function createToolUseMessage( |
| 4426 | toolName: string, |
| 4427 | input: { [key: string]: string | number }, |
| 4428 | ): UserMessage { |
| 4429 | return createUserMessage({ |
| 4430 | content: `Called the ${toolName} tool with the following input: ${jsonStringify(input)}`, |
| 4431 | isMeta: true, |
| 4432 | }) |
| 4433 | } |
| 4434 | |
| 4435 | export function createSystemMessage( |
| 4436 | content: string, |
no test coverage detected