This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| 智能翻译插件 - 核心翻译器 | |
| """ | |
| import json | |
| import re | |
| import hashlib | |
| import logging | |
| from typing import Optional, Dict, Any, List | |
| logger = logging.getLogger(__name__) |