rag-service

Installation
SKILL.md

功能

RAG 多路检索服务,提供:

  1. 向量语义检索 - 基于 Milvus 的向量相似度搜索
  2. Rerank 重排序 - 对检索结果进行精排
  3. 文档存储 - 保存文档到向量数据库

调用方式

from services.rag_service.client import RAGServiceClient

client = RAGServiceClient()

# 健康检查
status = client.health()

# 语义检索
result = client.retrieve(
    query="Python 异步编程最佳实践",
    top_k=5,
Related skills
Installs
10
GitHub Stars
7
First Seen
Jan 24, 2026