| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- 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;
- }
|