agent-mp 0.5.29 → 0.5.30
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/commands/repl.js +3 -0
- package/package.json +1 -1
package/dist/commands/repl.js
CHANGED
|
@@ -244,6 +244,9 @@ function detectModels(cliName) {
|
|
|
244
244
|
}
|
|
245
245
|
}
|
|
246
246
|
function buildCmd(cliName, model) {
|
|
247
|
+
// openai-compatible no es un CLI real — es la API de Qwen via API key
|
|
248
|
+
if (cliName === 'openai-compatible')
|
|
249
|
+
cliName = 'qwen';
|
|
247
250
|
const info = CLI_REGISTRY[cliName];
|
|
248
251
|
if (!info)
|
|
249
252
|
return `${cliName} -m ${model}`;
|