hlsitechbot / src /types /types.ts
hlsitech's picture
Upload 93 files
7bbd534 verified
raw
history blame contribute delete
158 Bytes
export type OpenAIModel = 'gpt-3.5-turbo' | 'gpt-4';
export interface ChatBody {
inputCode: string;
model: OpenAIModel;
apiKey?: string | undefined;
}