docs: 完善README文档结构和内容 refactor: 更新配置类注释和文档字符串 style: 统一代码格式和命名规范 fix: 修正MCP服务器配置和依赖项
14 lines
354 B
Python
14 lines
354 B
Python
"""
|
|
RAG (Retrieval Augmented Generation) 模块
|
|
|
|
该模块提供了检索增强生成的功能,包括:
|
|
- 嵌入向量生成和存储
|
|
- 相似度搜索和文档检索
|
|
- 基于FAISS的向量数据库支持
|
|
- 阿里云DashScope嵌入服务集成
|
|
"""
|
|
|
|
from .emb import QwenEmbeddings
|
|
from .simple import SimpleRag
|
|
|
|
__all__ = ["QwenEmbeddings", "SimpleRag"] |