Convert all Chinese comments, docstrings, logger/print output, HTTPException detail messages, and API response messages to English across the entire codebase. Functional zh/ja localized strings (e.g. prompt templates, timezone display names, date formats) are preserved as-is. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
273 B
Python
14 lines
273 B
Python
"""
|
|
Embedding Package
|
|
Provide text encoding and semantic search features
|
|
"""
|
|
|
|
from .manager import get_model_manager
|
|
from .embedding import embed_document, split_document_by_pages
|
|
|
|
__all__ = [
|
|
'get_model_manager',
|
|
'embed_document',
|
|
'split_document_by_pages'
|
|
]
|