This commit is contained in:
sijinhui
2023-12-16 23:05:14 +08:00
parent efdd61595e
commit b43c0b0109
91 changed files with 3399 additions and 12096 deletions

View File

@@ -6,7 +6,7 @@ export function collectModelTable(
) {
const modelTable: Record<
string,
{ available: boolean; name: string; displayName: string }
{ available: boolean; name: string; displayName: string; describe: string }
> = {};
// default models
@@ -37,6 +37,7 @@ export function collectModelTable(
name,
displayName: displayName || name,
available,
describe: "",
};
});
return modelTable;