(input: ToolClassificationInput)
| 621 | } |
| 622 | |
| 623 | function genericPreview(input: ToolClassificationInput): string | null { |
| 624 | return ( |
| 625 | getToolString(input.args, [ |
| 626 | "command", |
| 627 | "path", |
| 628 | "source", |
| 629 | "query", |
| 630 | "name", |
| 631 | "content", |
| 632 | "message", |
| 633 | ]) ?? (input.title ? input.title : null) |
| 634 | ); |
| 635 | } |
| 636 | |
| 637 | function isBuzzMessageSend(operation: string) { |
| 638 | return operation === "send_message" || operation === "messages_send"; |
no test coverage detected