feat(ai): Phase 3A-3 知识库 CRUD 服务 — references/guides 创建/更新/删除/列表

- KnowledgeService: 完整 CRUD(创建含自动 embedding 生成)
- Embedding 失败时降级为 NULL(条目仍可 CRUD,但不可向量搜索)
- re_embed 方法支持单条重新生成向量
- 所有操作通过 raw SQL 写入 pgvector embedding 列
- 软删除 + tenant_id 隔离
This commit is contained in:
iven
2026-05-19 08:53:29 +08:00
parent 7658bc3cdf
commit c0570dfbfc
2 changed files with 458 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ pub mod dialysis_risk_scorer;
pub mod embedding;
pub mod feature_flag_service;
pub mod insight_service;
pub mod knowledge;
pub mod local_rules;
pub mod output_parser;
pub mod post_process;