Vigilans
Vigilans
When language support of java is updated from 0.48 to 0.49, the plugin still search for the config in the old dir: ``` [Error - 10:52:55 PM] Sep 23, 2019...
使用`micromamba`,将`http://mirror.sjtu.edu.cn/anaconda/pkgs/main`设置为 `default_channels`,在安装包时会报错: ```log micromamba create -n py$PYTHON_VERSION python=$PYTHON_VERSION --verbose info libmamba Parsing MatchSpec python=3.7 info libmamba Searching index cache file for repo 'http://mirror.sjtu.edu.cn/anaconda/pkgs/main/linux-64/repodata.json' info libmamba No valid cache found info...
The macro ``` KERNEL_VERSION="6.6.36.6-1" ``` Will be interpreted as ``` \"-DKERNEL_VERSION=/\"6.6.36.6-1/\"\" ``` Which in turn expanded by clangd as ``` #define KERNEL_VERSION / 6.6.36.6-1 / ``` That causes error in...
**Is your feature request related to a problem? Please describe.** Skip installing a helm release if related resources already deployed in kubernetes cluster, e.g.: 1. Skip installing a cluster-scope operator...
### 您希望的更新和改进是什么 | Update or Improve 与“翻译段落所需的最少字符数”在满足条件时不纳入翻译不同,“发送请求时所需的最少字符数”尽量强制将短段落归为一组发送请求,以减少Token消耗。当队列等待超时时仍将发送翻译,以防止只剩一个段落时无限等待。 ### 补充说明 | Additional context 尽管缓存命中的Prompt的Token价格较低,但当向Prompt中加入例句输入、例句输出、乃至预先将例文使用推理模型(如Deepseek R1)翻译后,将思维链精校裁剪插入Prompt时,输入消耗的Token将十分可观。此时短段落单独发送翻译会变得非常浪费,如1000个输入Token换来70~80个输出Token。 尽管可以提升同时翻译的最大段落数,但参考 https://github.com/immersive-translate/immersive-translate/issues/1531 ,仍有很多短段落因为各种原因没有被合并。因此,作为一种软限制,希望加入“发送请求时所需的最少字符数”的功能,强制将这些短段落合并发送。对于未能检测出语言的短句,可用`Misc`之类的作为占位符。 由于目前的快速模型(如GPT-4o-Mini)在上下文长度和响应速度表现上都很良好,因此“例句+蒸馏大模型思维链+多段落”的模式,在响应速度的体验上完全没有问题,相反由于输入Token非常多在小段落上的响应时间也差不多,因此更加希望能将小段落聚合起来。
In future, when adding obfuscation support, consider supporting obsfuction method `wireguard` that implements logic like https://github.com/database64128/swgp-go 's `Zero overhead` mode. Some crypto lib seems could be exported from kernel module...
`yabai query --` supports three constraint arguments: ``` ARGUMENT ^^^^^^^^ *--display* ['']:: Constrain matches to the selected display. *--space* ['']:: Constrain matches to the selected space. *--window* ['']:: Constrain matches...
# Overview A new syntax `${name[key]}` is introduced to interpolation, to allow for compose to expose its internal information to configuration files, as what https://github.com/compose-spec/compose-spec/issues/248 describes. For example: * `${project[working-dir]}`:...
When pulling images using `docker` or `containerd` client, during manifest fetching, it will send authentication request with `service` and `scope` argument after receiving 401 and WWW-Authenticate header in response: Auth...
Currently in model loading, `workingDir` refers to the **relative** directory to the `workingDir` of **upper caller**, instead of the process's current working directory. This makes operations like `os.Stat(filepath.Join(workingDir, f))` will...