Short (72 chars or less) summary
More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).
Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
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
| // author: 叙白 | |
| // date: 2025-07-30 | |
| // name: BigModelTranslator.js | |
| // 注意:请在脚本中的变量功能中添加 bigmodel_key 变量,值为 BigModel 的 API Key | |
| // 使用glm-4.5-airx ,可替换为glm-4.5-flash 免费模型,默认关闭思考 | |
| const BASE_URL = "https://open.bigmodel.cn/api/paas/v4/chat/completions"; | |
| const DEFAULT_MODEL = "glm-4.5-airx"; | |
| const DEFAULT_TEMPERATURE = 0.8; |