向量数据库
Some checks failed
构建并部署 AI Agent 服务 / deploy (push) Failing after 32m6s

This commit is contained in:
2026-04-18 16:56:23 +08:00
parent 0470afce13
commit c18e8a9860
11 changed files with 1121 additions and 0 deletions

25
rag_indexer/__init__.py Normal file
View File

@@ -0,0 +1,25 @@
"""
Offline RAG Indexer module.
"""
from .loaders import DocumentLoader
from .splitters import (
RecursiveSplitter,
SemanticSplitter,
ParentChildSplitter,
SplitterType,
)
from .embedders import LlamaCppEmbedder
from .vector_store import QdrantVectorStore
from .builder import IndexBuilder
__all__ = [
"DocumentLoader",
"RecursiveSplitter",
"SemanticSplitter",
"ParentChildSplitter",
"SplitterType",
"LlamaCppEmbedder",
"QdrantVectorStore",
"IndexBuilder",
]