MCPcopy Create free account
hub / github.com/sqlchat/sqlchat / Table

Interface Table

src/types/database.ts:8–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6}
7
8export 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}
15export interface Schema {
16 name: string;
17 tables: Table[];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected