ForcePilot/web/src/utils/kb_utils.js
Wenjie Zhang 302175e0b0 refactor: 移除 ChromaDB 相关代码和依赖
移除项目中所有与 ChromaDB 相关的代码、依赖和文档引用,统一使用 Milvus 作为向量数据库实现
2026-01-02 14:44:00 +08:00

17 lines
293 B
JavaScript

export const getKbTypeLabel = (type) => {
const labels = {
lightrag: 'LightRAG',
milvus: 'Milvus'
};
return labels[type] || type;
};
export const getKbTypeColor = (type) => {
const colors = {
lightrag: 'purple',
milvus: 'red'
};
return colors[type] || 'blue';
};