| 74 | * Built-in tool configuration for execute_sql |
| 75 | */ |
| 76 | export interface ExecuteSqlToolConfig { |
| 77 | name: "execute_sql"; // Must match BUILTIN_TOOL_EXECUTE_SQL from builtin-tools.ts |
| 78 | source: string; |
| 79 | readonly?: boolean; |
| 80 | max_rows?: number; |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Built-in tool configuration for search_objects |
nothing calls this directly
no outgoing calls
no test coverage detected