Files
AIRegulation-DocAnalysis/backend/app/services/embedding/__init__.py

7 lines
166 B
Python
Raw Normal View History

2026-05-14 15:07:34 +08:00
"""嵌入和分块服务"""
from .text_chunker import RegulationChunker
from .bge_m3_embedder import BGEM3Embedder
__all__ = ["RegulationChunker", "BGEM3Embedder"]