zelari-code 1.31.0 → 1.31.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli/main.bundled.js
CHANGED
|
@@ -34654,13 +34654,16 @@ function buildComposioPreset() {
|
|
|
34654
34654
|
}
|
|
34655
34655
|
function buildQwenMmPreset() {
|
|
34656
34656
|
const plugin = process.env.QWEN_MM_PLUGIN?.trim() || "qwen-mm-plugins-core";
|
|
34657
|
+
const cap3 = plugin.replace(/^qwen-mm-plugins-/, "");
|
|
34658
|
+
const spec = `qwen-mm-plugins[${cap3}] @ git+https://github.com/QwenLM/Qwen-MM-Plugins.git@${plugin}-v1.0.1`;
|
|
34657
34659
|
return {
|
|
34658
34660
|
id: "qwen-mm-plugins",
|
|
34659
34661
|
servers: {
|
|
34660
34662
|
"qwen-mm-plugins": {
|
|
34661
34663
|
command: "uvx",
|
|
34662
|
-
args: [plugin],
|
|
34664
|
+
args: ["--from", spec, plugin],
|
|
34663
34665
|
env: {
|
|
34666
|
+
PYTHONIOENCODING: "utf-8",
|
|
34664
34667
|
...process.env.DASHSCOPE_API_KEY ? { DASHSCOPE_API_KEY: process.env.DASHSCOPE_API_KEY } : {},
|
|
34665
34668
|
...process.env.SERPER_API_KEY ? { SERPER_API_KEY: process.env.SERPER_API_KEY } : {}
|
|
34666
34669
|
},
|
|
@@ -34669,8 +34672,8 @@ function buildQwenMmPreset() {
|
|
|
34669
34672
|
},
|
|
34670
34673
|
notes: [
|
|
34671
34674
|
"Qwen-MM-Plugins \u2014 multimodal capabilities (core / video-memory / video-edit / blender / freecad) as MCP tools.",
|
|
34672
|
-
"
|
|
34673
|
-
"Windows:
|
|
34675
|
+
"Installs via uvx from the GitHub release tag (qwen-mm-plugins-<cap>-v1.0.1); first launch downloads ~70 packages.",
|
|
34676
|
+
"Windows: verified working natively with PYTHONIOENCODING=utf-8 (WSL2 also supported upstream).",
|
|
34674
34677
|
"Pick a capability: export QWEN_MM_PLUGIN=qwen-mm-plugins-video-memory (default: qwen-mm-plugins-core).",
|
|
34675
34678
|
"API keys read at apply time: DASHSCOPE_API_KEY, SERPER_API_KEY (native reading works without them).",
|
|
34676
34679
|
"Blender/FreeCAD variants: start the host app before invoking tools.",
|