2025-09-23 13:07:50 +08:00
|
|
|
|
"""知识库工具模块
|
|
|
|
|
|
|
|
|
|
|
|
包含知识库相关的工具函数:
|
|
|
|
|
|
- kb_utils: 知识库通用工具函数
|
|
|
|
|
|
- indexing: 文件处理和索引相关功能
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
from .kb_utils import (
|
2025-10-11 21:52:48 +08:00
|
|
|
|
calculate_content_hash,
|
2025-09-23 13:07:50 +08:00
|
|
|
|
get_embedding_config,
|
2025-11-12 09:14:07 +08:00
|
|
|
|
merge_processing_params,
|
2025-09-23 13:07:50 +08:00
|
|
|
|
prepare_item_metadata,
|
|
|
|
|
|
split_text_into_chunks,
|
|
|
|
|
|
split_text_into_qa_chunks,
|
|
|
|
|
|
validate_file_path,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
__all__ = [
|
2025-10-11 21:52:48 +08:00
|
|
|
|
"calculate_content_hash",
|
2025-09-23 13:07:50 +08:00
|
|
|
|
"get_embedding_config",
|
|
|
|
|
|
"prepare_item_metadata",
|
|
|
|
|
|
"split_text_into_chunks",
|
|
|
|
|
|
"split_text_into_qa_chunks",
|
2025-11-14 00:56:24 +08:00
|
|
|
|
"merge_processing_params",
|
2025-09-23 13:07:50 +08:00
|
|
|
|
"validate_file_path",
|
|
|
|
|
|
]
|