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-11-12 09:14:07 +08:00
|
|
|
|
merge_processing_params,
|
2025-09-23 13:07:50 +08:00
|
|
|
|
prepare_item_metadata,
|
2026-05-16 17:21:27 +08:00
|
|
|
|
resolve_processing_params,
|
2026-03-25 08:06:25 +08:00
|
|
|
|
sanitize_processing_params,
|
2025-09-23 13:07:50 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
__all__ = [
|
2025-10-11 21:52:48 +08:00
|
|
|
|
"calculate_content_hash",
|
2025-09-23 13:07:50 +08:00
|
|
|
|
"prepare_item_metadata",
|
2026-05-16 17:21:27 +08:00
|
|
|
|
"resolve_processing_params",
|
2026-03-25 08:06:25 +08:00
|
|
|
|
"sanitize_processing_params",
|
2025-11-14 00:56:24 +08:00
|
|
|
|
"merge_processing_params",
|
2025-09-23 13:07:50 +08:00
|
|
|
|
]
|