akseljoonas HF Staff commited on
Commit
84d6f33
·
1 Parent(s): a2e8010

Use model maker as subtitle in selector, not routing mechanic

Browse files

'HF auto-routed' read as a plumbing detail. Matching the Claude row's
'Anthropic' convention, show who built the model — MiniMax, Moonshot AI,
Z.ai — which is what users actually recognize.

frontend/src/components/Chat/ChatInput.tsx CHANGED
@@ -32,7 +32,7 @@ const MODEL_OPTIONS: ModelOption[] = [
32
  {
33
  id: 'minimax-m2.7',
34
  name: 'MiniMax M2.7',
35
- description: 'HF auto-routed',
36
  modelPath: 'MiniMaxAI/MiniMax-M2.7',
37
  avatarUrl: getHfAvatarUrl('MiniMaxAI/MiniMax-M2.7'),
38
  recommended: true,
@@ -40,14 +40,14 @@ const MODEL_OPTIONS: ModelOption[] = [
40
  {
41
  id: 'kimi-k2.6',
42
  name: 'Kimi K2.6',
43
- description: 'HF auto-routed',
44
  modelPath: 'moonshotai/Kimi-K2.6',
45
  avatarUrl: getHfAvatarUrl('moonshotai/Kimi-K2.6'),
46
  },
47
  {
48
  id: 'glm-5.1',
49
  name: 'GLM 5.1',
50
- description: 'HF auto-routed',
51
  modelPath: 'zai-org/GLM-5.1',
52
  avatarUrl: getHfAvatarUrl('zai-org/GLM-5.1'),
53
  },
 
32
  {
33
  id: 'minimax-m2.7',
34
  name: 'MiniMax M2.7',
35
+ description: 'MiniMax',
36
  modelPath: 'MiniMaxAI/MiniMax-M2.7',
37
  avatarUrl: getHfAvatarUrl('MiniMaxAI/MiniMax-M2.7'),
38
  recommended: true,
 
40
  {
41
  id: 'kimi-k2.6',
42
  name: 'Kimi K2.6',
43
+ description: 'Moonshot AI',
44
  modelPath: 'moonshotai/Kimi-K2.6',
45
  avatarUrl: getHfAvatarUrl('moonshotai/Kimi-K2.6'),
46
  },
47
  {
48
  id: 'glm-5.1',
49
  name: 'GLM 5.1',
50
+ description: 'Z.ai',
51
  modelPath: 'zai-org/GLM-5.1',
52
  avatarUrl: getHfAvatarUrl('zai-org/GLM-5.1'),
53
  },