( toolName: string, toolInput: unknown, )
| 1485 | * fields get exposed via its `toAutoClassifierInput` implementation. |
| 1486 | */ |
| 1487 | export function formatActionForClassifier( |
| 1488 | toolName: string, |
| 1489 | toolInput: unknown, |
| 1490 | ): TranscriptEntry { |
| 1491 | return { |
| 1492 | role: 'assistant', |
| 1493 | content: [{ type: 'tool_use', name: toolName, input: toolInput }], |
| 1494 | } |
| 1495 | } |
| 1496 |
no outgoing calls
no test coverage detected