(text: string, targetLang = "中文")
| 83 | * @param targetLang 目标语言(默认中文) |
| 84 | */ |
| 85 | export async function translateText(text: string, targetLang = "中文") { |
| 86 | return sendTextToChat(`请将以下文本翻译成${targetLang}:\n\n${text}`, true) |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * 解释代码 |
nothing calls this directly
no test coverage detected