zengzengqwq

Results 3 issues of zengzengqwq

**Is your feature request related to a problem? Please describe.** I tried using `@microsoft/inshellisense` on Node.js 24 and ran into installation issues. The main blockers are prebuilt binaries for native...

feature-request

### Description I encountered a dependency conflict after running the model download script (`download_weights.sh`). The script forces an upgrade of `huggingface_hub`, which breaks compatibility with the installed `transformers` version required...

**Describe the bug** 文档/示例对“日语”语言标签的写法与代码实际支持不一致 https://github.com/FunAudioLLM/CosyVoice/blob/main/example.py#L21 注释写的是: https://github.com/FunAudioLLM/CosyVoice/blob/main/cosyvoice/tokenizer/tokenizer.py#L19 但实际 tokenizer 注册的语言 token 来自 LANGUAGES 的 key,日语是 ja https://github.com/FunAudioLLM/CosyVoice/blob/main/cosyvoice/tokenizer/tokenizer.py#L182 并且 get_encoding() 注册的是 *[f"" for lang in list(LANGUAGES.keys())],因此支持的是 而不是 。 这会导致使用 时,tokenizer 不会把它当成一个特殊...