qwen_agent/embedding/__init__.py
朱潮 425f3c5bb4 chore: replace Chinese comments and log messages with English
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>
2026-04-30 19:45:35 +08:00

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'
]