MCPcopy Create free account
hub / github.com/cognosisai/platform / SQL2LLMInput

Interface SQL2LLMInput

src/workflows/sql2llm.ts:11–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9const { split_text_by_tokens, sql2llm_session_multiplexer, parse_and_fix_csv } = proxyActivities< typeof activities >({ startToCloseTimeout: '10 minute' });
10
11export interface SQL2LLMInput extends Frame {
12 dbname: string;
13 query: string;
14 fields: string[];
15 context: string | null;
16 result?: SQL2LLMOutput;
17}
18
19export interface SQL2LLMOutput extends Frame {
20 query: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected