(toolName: string)
| 54 | } |
| 55 | |
| 56 | export function generateToolUseId(toolName: string): string { |
| 57 | return `${toolName}-${Date.now()}-${randomFloat().toString(36).substring(2, 7)}` |
| 58 | } |
| 59 | |
| 60 | export function checkForForcedToolUsage( |
| 61 | response: any, |
nothing calls this directly
no test coverage detected