This commit is contained in:
josc146
2023-12-25 16:56:46 +08:00
parent fde988dd4e
commit 8e05f3c360
5 changed files with 16 additions and 9 deletions

View File

@@ -1,15 +1,17 @@
export type ModelSourceItem = {
name: string;
size: number;
lastUpdated: string;
desc?: { [lang: string]: string | undefined; };
size: number;
SHA256?: string;
lastUpdated: string;
url?: string;
downloadUrl?: string;
tags?: string[];
customTokenizer?: string;
hide?: boolean;
lastUpdatedMs?: number;
isComplete?: boolean;
isLocal?: boolean;
localSize?: number;
lastUpdatedMs?: number;
tags?: string[];
hide?: boolean;
};