Fix : Qwen provider

This commit is contained in:
decolua
2026-04-04 12:38:39 +07:00
parent d84489dba4
commit 2b1faeb2c6
3 changed files with 84 additions and 4 deletions
+3
View File
@@ -7,6 +7,7 @@ import { KiroExecutor } from "./kiro.js";
import { CodexExecutor } from "./codex.js";
import { CursorExecutor } from "./cursor.js";
import { VertexExecutor } from "./vertex.js";
import { QwenExecutor } from "./qwen.js";
import { DefaultExecutor } from "./default.js";
const executors = {
@@ -21,6 +22,7 @@ const executors = {
cu: new CursorExecutor(), // Alias for cursor
vertex: new VertexExecutor("vertex"),
"vertex-partner": new VertexExecutor("vertex-partner"),
qwen: new QwenExecutor(),
};
const defaultCache = new Map();
@@ -46,3 +48,4 @@ export { CodexExecutor } from "./codex.js";
export { CursorExecutor } from "./cursor.js";
export { VertexExecutor } from "./vertex.js";
export { DefaultExecutor } from "./default.js";
export { QwenExecutor } from "./qwen.js";