forked from XiaoMo/ChatGPT-Next-Web
e9def2cdc5
- [+] refactor(model.ts): change forEach loop to arrow function for readability and consistency - [+] fix(model.ts): mark 'provider' property as optional in modelTable type - [+] fix(model.ts): use optional chaining when assigning provider property in modelTable
62 lines
1.4 KiB
TypeScript
62 lines
1.4 KiB
TypeScript
import { LLMModel } from "../client/api";
|
|
|
|
export function collectModelTable(
|
|
models: readonly LLMModel[],
|
|
customModels: string,
|
|
) {
|
|
const modelTable: Record<
|
|
string,
|
|
{
|
|
available: boolean;
|
|
name: string;
|
|
displayName: string;
|
|
provider?: LLMModel["provider"]; // Marked as optional
|
|
}
|
|
> = {};
|
|
|
|
// default models
|
|
models.forEach((m) => {
|
|
modelTable[m.name] = {
|
|
...m,
|
|
displayName: m.name, // 'provider' is copied over if it exists
|
|
};
|
|
});
|
|
|
|
// server custom models
|
|
customModels
|
|
.split(",")
|
|
.filter((v) => !!v && v.length > 0)
|
|
.forEach((m) => {
|
|
const available = !m.startsWith("-");
|
|
const nameConfig =
|
|
m.startsWith("+") || m.startsWith("-") ? m.slice(1) : m;
|
|
const [name, displayName] = nameConfig.split("=");
|
|
|
|
// enable or disable all models
|
|
if (name === "all") {
|
|
Object.values(modelTable).forEach((model) => (model.available = available));
|
|
} else {
|
|
modelTable[name] = {
|
|
name,
|
|
displayName: displayName || name,
|
|
available,
|
|
provider: modelTable[name]?.provider, // Use optional chaining
|
|
};
|
|
}
|
|
});
|
|
return modelTable;
|
|
}
|
|
|
|
/**
|
|
* Generate full model table.
|
|
*/
|
|
export function collectModels(
|
|
models: readonly LLMModel[],
|
|
customModels: string,
|
|
) {
|
|
const modelTable = collectModelTable(models, customModels);
|
|
const allModels = Object.values(modelTable);
|
|
|
|
return allModels;
|
|
}
|