Spaces:
Sleeping
Sleeping
File size: 434 Bytes
c730f0b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | export interface FileContext {
id: string;
filename: string;
extension: string;
text: string;
error: string | null;
size: number;
}
export interface ChatSession {
id: string;
title: string;
createdAt: string;
updatedAt: string;
}
export interface AppSettings {
provider: "anthropic" | "openai" | "deepseek";
model: string;
apiKeys: {
openai: string;
anthropic: string;
deepseek: string;
};
}
|