Spaces:
Runtime error
Runtime error
File size: 257 Bytes
8e20687 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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;
}
|