Merge pull request #2832 from QuantumNous/revert-2759-fix-group-colors
Revert "fix(ui): use distinct color palette for group tags"
This commit is contained in:
commit
5878ea6b64
@ -170,21 +170,21 @@ export const getModelCategories = (() => {
|
|||||||
gemini: {
|
gemini: {
|
||||||
label: 'Gemini',
|
label: 'Gemini',
|
||||||
icon: <Gemini.Color />,
|
icon: <Gemini.Color />,
|
||||||
filter: (model) =>
|
filter: (model) =>
|
||||||
model.model_name.toLowerCase().includes('gemini') ||
|
model.model_name.toLowerCase().includes('gemini') ||
|
||||||
model.model_name.toLowerCase().includes('gemma') ||
|
model.model_name.toLowerCase().includes('gemma') ||
|
||||||
model.model_name.toLowerCase().includes('learnlm') ||
|
model.model_name.toLowerCase().includes('learnlm') ||
|
||||||
model.model_name.toLowerCase().startsWith('embedding-') ||
|
model.model_name.toLowerCase().startsWith('embedding-') ||
|
||||||
model.model_name.toLowerCase().includes('text-embedding-004') ||
|
model.model_name.toLowerCase().includes('text-embedding-004') ||
|
||||||
model.model_name.toLowerCase().includes('imagen-4') ||
|
model.model_name.toLowerCase().includes('imagen-4') ||
|
||||||
model.model_name.toLowerCase().includes('veo-') ||
|
model.model_name.toLowerCase().includes('veo-') ||
|
||||||
model.model_name.toLowerCase().includes('aqa'),
|
model.model_name.toLowerCase().includes('aqa') ,
|
||||||
},
|
},
|
||||||
moonshot: {
|
moonshot: {
|
||||||
label: 'Moonshot',
|
label: 'Moonshot',
|
||||||
icon: <Moonshot />,
|
icon: <Moonshot />,
|
||||||
filter: (model) =>
|
filter: (model) =>
|
||||||
model.model_name.toLowerCase().includes('moonshot') ||
|
model.model_name.toLowerCase().includes('moonshot') ||
|
||||||
model.model_name.toLowerCase().includes('kimi'),
|
model.model_name.toLowerCase().includes('kimi'),
|
||||||
},
|
},
|
||||||
zhipu: {
|
zhipu: {
|
||||||
@ -192,8 +192,8 @@ export const getModelCategories = (() => {
|
|||||||
icon: <Zhipu.Color />,
|
icon: <Zhipu.Color />,
|
||||||
filter: (model) =>
|
filter: (model) =>
|
||||||
model.model_name.toLowerCase().includes('chatglm') ||
|
model.model_name.toLowerCase().includes('chatglm') ||
|
||||||
model.model_name.toLowerCase().includes('glm-') ||
|
model.model_name.toLowerCase().includes('glm-') ||
|
||||||
model.model_name.toLowerCase().includes('cogview') ||
|
model.model_name.toLowerCase().includes('cogview') ||
|
||||||
model.model_name.toLowerCase().includes('cogvideo'),
|
model.model_name.toLowerCase().includes('cogvideo'),
|
||||||
},
|
},
|
||||||
qwen: {
|
qwen: {
|
||||||
@ -209,8 +209,8 @@ export const getModelCategories = (() => {
|
|||||||
minimax: {
|
minimax: {
|
||||||
label: 'MiniMax',
|
label: 'MiniMax',
|
||||||
icon: <Minimax.Color />,
|
icon: <Minimax.Color />,
|
||||||
filter: (model) =>
|
filter: (model) =>
|
||||||
model.model_name.toLowerCase().includes('abab') ||
|
model.model_name.toLowerCase().includes('abab') ||
|
||||||
model.model_name.toLowerCase().includes('minimax'),
|
model.model_name.toLowerCase().includes('minimax'),
|
||||||
},
|
},
|
||||||
baidu: {
|
baidu: {
|
||||||
@ -236,7 +236,7 @@ export const getModelCategories = (() => {
|
|||||||
cohere: {
|
cohere: {
|
||||||
label: 'Cohere',
|
label: 'Cohere',
|
||||||
icon: <Cohere.Color />,
|
icon: <Cohere.Color />,
|
||||||
filter: (model) =>
|
filter: (model) =>
|
||||||
model.model_name.toLowerCase().includes('command') ||
|
model.model_name.toLowerCase().includes('command') ||
|
||||||
model.model_name.toLowerCase().includes('c4ai-') ||
|
model.model_name.toLowerCase().includes('c4ai-') ||
|
||||||
model.model_name.toLowerCase().includes('embed-'),
|
model.model_name.toLowerCase().includes('embed-'),
|
||||||
@ -259,7 +259,7 @@ export const getModelCategories = (() => {
|
|||||||
mistral: {
|
mistral: {
|
||||||
label: 'Mistral AI',
|
label: 'Mistral AI',
|
||||||
icon: <Mistral.Color />,
|
icon: <Mistral.Color />,
|
||||||
filter: (model) =>
|
filter: (model) =>
|
||||||
model.model_name.toLowerCase().includes('mistral') ||
|
model.model_name.toLowerCase().includes('mistral') ||
|
||||||
model.model_name.toLowerCase().includes('codestral') ||
|
model.model_name.toLowerCase().includes('codestral') ||
|
||||||
model.model_name.toLowerCase().includes('pixtral') ||
|
model.model_name.toLowerCase().includes('pixtral') ||
|
||||||
@ -605,34 +605,6 @@ export function stringToColor(str) {
|
|||||||
return colors[i];
|
return colors[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
// High-contrast color palette for group tags (avoids similar blue/teal shades)
|
|
||||||
const groupColors = [
|
|
||||||
'red',
|
|
||||||
'orange',
|
|
||||||
'yellow',
|
|
||||||
'lime',
|
|
||||||
'green',
|
|
||||||
'cyan',
|
|
||||||
'blue',
|
|
||||||
'indigo',
|
|
||||||
'violet',
|
|
||||||
'purple',
|
|
||||||
'pink',
|
|
||||||
'amber',
|
|
||||||
'grey',
|
|
||||||
];
|
|
||||||
|
|
||||||
export function groupToColor(str) {
|
|
||||||
// Use a better hash algorithm for more even distribution
|
|
||||||
let hash = 0;
|
|
||||||
for (let i = 0; i < str.length; i++) {
|
|
||||||
hash = (hash << 5) - hash + str.charCodeAt(i);
|
|
||||||
hash = hash & hash;
|
|
||||||
}
|
|
||||||
hash = Math.abs(hash);
|
|
||||||
return groupColors[hash % groupColors.length];
|
|
||||||
}
|
|
||||||
|
|
||||||
// 渲染带有模型图标的标签
|
// 渲染带有模型图标的标签
|
||||||
export function renderModelTag(modelName, options = {}) {
|
export function renderModelTag(modelName, options = {}) {
|
||||||
const {
|
const {
|
||||||
@ -701,7 +673,7 @@ export function renderGroup(group) {
|
|||||||
<span key={group}>
|
<span key={group}>
|
||||||
{groups.map((group) => (
|
{groups.map((group) => (
|
||||||
<Tag
|
<Tag
|
||||||
color={tagColors[group] || groupToColor(group)}
|
color={tagColors[group] || stringToColor(group)}
|
||||||
key={group}
|
key={group}
|
||||||
shape='circle'
|
shape='circle'
|
||||||
onClick={async (event) => {
|
onClick={async (event) => {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user