(text: string)
| 11 | export const openAIOrganization = process.env.OPENAI_ORGANIZATION; |
| 12 | |
| 13 | export const countTextTokens = (text: string) => { |
| 14 | return encode(text).length; |
| 15 | }; |
| 16 | |
| 17 | export function generateDbPromptFromContext( |
| 18 | promptGenerator: (engine: Engine | undefined, schema: string | undefined) => string, |
no outgoing calls
no test coverage detected