File size: 167 Bytes
4840fb6 |
1 2 3 4 5 6 7 8 9 10 |
export enum AppStatus {
IDLE,
PROCESSING,
SUCCESS,
ERROR,
}
export type Provider = 'gemini' | 'openai' | 'anthropic';
export type AppType = 'python' | 'c++'; |
4840fb6 |
1 2 3 4 5 6 7 8 9 10 |
export enum AppStatus {
IDLE,
PROCESSING,
SUCCESS,
ERROR,
}
export type Provider = 'gemini' | 'openai' | 'anthropic';
export type AppType = 'python' | 'c++'; |