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'; };