19 lines
337 B
JavaScript
19 lines
337 B
JavaScript
|
|
|
||
|
|
export const getKbTypeLabel = (type) => {
|
||
|
|
const labels = {
|
||
|
|
lightrag: 'LightRAG',
|
||
|
|
chroma: 'Chroma',
|
||
|
|
milvus: 'Milvus'
|
||
|
|
};
|
||
|
|
return labels[type] || type;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const getKbTypeColor = (type) => {
|
||
|
|
const colors = {
|
||
|
|
lightrag: 'purple',
|
||
|
|
chroma: 'orange',
|
||
|
|
milvus: 'red'
|
||
|
|
};
|
||
|
|
return colors[type] || 'blue';
|
||
|
|
};
|