Spaces:
Configuration error
Configuration error
| export type OpenAIModel = 'gpt-3.5-turbo' | 'gpt-4'; | |
| export interface ChatBody { | |
| inputCode: string; | |
| model: OpenAIModel; | |
| apiKey?: string | undefined; | |
| } | |