(
toolName: string,
input: { [key: string]: string | number },
)
| 4760 | } |
| 4761 | |
| 4762 | function createToolUseMessage( |
| 4763 | toolName: string, |
| 4764 | input: { [key: string]: string | number }, |
| 4765 | ): UserMessage { |
| 4766 | return createUserMessage({ |
| 4767 | content: `Called the ${toolName} tool with the following input: ${jsonStringify(input)}`, |
| 4768 | isMeta: true, |
| 4769 | }) |
| 4770 | } |
| 4771 | |
| 4772 | export function createSystemMessage( |
| 4773 | content: string, |
no test coverage detected