| 6 | } |
| 7 | |
| 8 | export interface Table { |
| 9 | name: string; |
| 10 | // structure is a string of the table structure. |
| 11 | // It's mainly used for providing a chat context for the assistant. |
| 12 | structure: string; |
| 13 | token?: number; |
| 14 | } |
| 15 | export interface Schema { |
| 16 | name: string; |
| 17 | tables: Table[]; |
nothing calls this directly
no outgoing calls
no test coverage detected