Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions interface/src/components/ModelSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ const PROVIDER_LABELS: Record<string, string> = {
zhipu: "Z.ai (GLM)",
ollama: "Ollama",
"opencode-zen": "OpenCode Zen",
minimax: "MiniMax",
"minimax-cn": "MiniMax CN",
};

function formatContextWindow(tokens: number | null): string {
Expand Down Expand Up @@ -137,6 +139,8 @@ export function ModelSelect({
"fireworks",
"zhipu",
"opencode-zen",
"minimax",
"minimax-cn",
];
const sortedProviders = Object.keys(grouped).sort(
(a, b) =>
Expand Down
1 change: 1 addition & 0 deletions interface/src/lib/providerIcons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export function ProviderIcon({ provider, className = "text-ink-faint", size = 24
"opencode-zen": OpenCodeZenIcon,
nvidia: NvidiaIcon,
minimax: Minimax,
"minimax-cn": Minimax,
moonshot: Kimi, // Kimi is Moonshot AI's product brand
};

Expand Down
Loading