Spaces:
Runtime error
Runtime error
| export type OpenAIModel = 'gpt-3.5-turbo' | 'gpt-4'; | |
| export interface TranslateBody { | |
| inputLanguage: string; | |
| outputLanguage: string; | |
| inputCode: string; | |
| model: OpenAIModel; | |
| apiKey: string; | |
| } | |
| export interface TranslateResponse { | |
| code: string; | |
| } | |