File size: 158 Bytes
7bbd534
 
 
 
 
 
 
1
2
3
4
5
6
7
8
export type OpenAIModel = 'gpt-3.5-turbo' | 'gpt-4';

export interface ChatBody {
  inputCode: string;
  model: OpenAIModel;
  apiKey?: string | undefined;
}