| 92 | * Custom tool configuration |
| 93 | */ |
| 94 | export interface CustomToolConfig { |
| 95 | name: string; // Must not be "execute_sql" or "search_objects" |
| 96 | source: string; |
| 97 | description: string; |
| 98 | statement: string; |
| 99 | parameters?: ParameterConfig[]; |
| 100 | readonly?: boolean; |
| 101 | max_rows?: number; |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * Unified tool configuration (discriminated union) |
nothing calls this directly
no outgoing calls
no test coverage detected