| 10 | const openai = new OpenAIApi(configuration); |
| 11 | |
| 12 | export class ChatGPTClient { |
| 13 | async getAnswer(question: string): Promise<string> { |
| 14 | const { model, maxTokens, temperature } = await getPromptOptions(); |
| 15 |
nothing calls this directly
no outgoing calls
no test coverage detected