/** Noms affichés des fournisseurs — une seule source pour réglages et page publique. */ export const PROVIDER_LABELS: Record = { openai: 'OpenAI', anthropic: 'Anthropic', minimax: 'MiniMax', google: 'Google AI', deepseek: 'DeepSeek', openrouter: 'OpenRouter', mistral: 'Mistral AI', glm: 'GLM (Zhipu)', zai: 'Zuki Journey', anthropic_custom: 'Anthropic (custom)', custom_openai: 'Compatible OpenAI', custom_anthropic: 'Compatible Anthropic', custom: 'Custom API', } export function providerDisplayName(provider: string): string { return PROVIDER_LABELS[provider] ?? provider }