refactor: add provider names to model constants

This commit is contained in:
simosmik
2026-04-30 06:55:29 +00:00
parent 4ce54946ce
commit 1e4d3eabb5
2 changed files with 23 additions and 7 deletions

View File

@@ -94,3 +94,13 @@ export const GEMINI_MODELS = {
DEFAULT: "gemini-3.1-pro-preview",
};
/**
* Ordered provider registry. Display order in selection UIs.
*/
export const PROVIDERS = [
{ id: "claude", name: "Anthropic", models: CLAUDE_MODELS },
{ id: "codex", name: "OpenAI", models: CODEX_MODELS },
{ id: "gemini", name: "Google", models: GEMINI_MODELS },
{ id: "cursor", name: "Cursor", models: CURSOR_MODELS },
];