RosticFACE's picture
Upload 28 files
4840fb6 verified
export enum AppStatus {
IDLE,
PROCESSING,
SUCCESS,
ERROR,
}
export type Provider = 'gemini' | 'openai' | 'anthropic';
export type AppType = 'python' | 'c++';