This commit is contained in:
Theo Browne
2026-02-20 02:52:39 -08:00
parent 104eb8e73e
commit 6b4ed5fcb3
4 changed files with 7 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ export const MODELS = [
{ id: "anthropic/claude-opus-4.6", name: "Opus 4.6" },
{ id: "anthropic/claude-sonnet-4.6", name: "Sonnet 4.6" },
{ id: "x-ai/grok-4.1-fast", name: "Grok 4.1" },
{ id: "minimax/minimax-m2.5", name: "MiniMax 2.5" },
] as const;
export type Model = (typeof MODELS)[number];
@@ -29,6 +30,7 @@ export const MODEL_COLORS: Record<string, string> = {
"Opus 4.6": "blue",
"Sonnet 4.6": "red",
"Grok 4.1": "white",
"MiniMax 2.5": "magentaBright",
};
export const NAME_PAD = 16;