export enum AppStatus { IDLE, PROCESSING, SUCCESS, ERROR, } export type Provider = 'gemini' | 'openai' | 'anthropic'; export type AppType = 'python' | 'c++';