@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
24 lines (21 loc) • 376 B
text/typescript
export interface ReleaseNoteInfo {
/**
* The note.
*/
note: string | null;
/**
* The version.
*/
version: string;
}
export interface ProgressInfo {
bytesPerSecond: number;
percent: number;
total: number;
transferred: number;
}
export interface UpdateInfo {
releaseDate: string;
releaseNotes?: string | ReleaseNoteInfo[];
version: string;
}