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