model tags classifier

This commit is contained in:
josc146
2023-12-08 18:17:53 +08:00
parent 51e162970e
commit f5900179e0
7 changed files with 354 additions and 45 deletions

View File

@@ -118,6 +118,7 @@ class CommonStore {
modelConfigs: ModelConfig[] = [];
modelParamsCollapsed: boolean = true;
// models
activeModelListTags: string[] = [];
modelSourceManifestList: string = 'https://cdn.jsdelivr.net/gh/josstorer/RWKV-Runner@master/manifest.json;';
modelSourceList: ModelSourceItem[] = [];
// downloads
@@ -453,6 +454,10 @@ class CommonStore {
setPlayingTrackId(value: string) {
this.playingTrackId = value;
}
setActiveModelListTags(value: string[]) {
this.activeModelListTags = value;
}
}
export default new CommonStore();