kantban-cli 0.1.27 → 0.1.28
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/index.js
CHANGED
|
@@ -31,10 +31,10 @@ async function main() {
|
|
|
31
31
|
}
|
|
32
32
|
case "pipeline": {
|
|
33
33
|
if (args[0] === "stop") {
|
|
34
|
-
const { stopPipeline } = await import("./pipeline-
|
|
34
|
+
const { stopPipeline } = await import("./pipeline-CA5Q3SPA.js");
|
|
35
35
|
await stopPipeline(args.slice(1));
|
|
36
36
|
} else {
|
|
37
|
-
const { runPipeline } = await import("./pipeline-
|
|
37
|
+
const { runPipeline } = await import("./pipeline-CA5Q3SPA.js");
|
|
38
38
|
await runPipeline(client, args);
|
|
39
39
|
}
|
|
40
40
|
break;
|
|
@@ -3644,7 +3644,8 @@ var GeminiProvider = class _GeminiProvider {
|
|
|
3644
3644
|
supportedModels: [
|
|
3645
3645
|
{ id: "gemini-2.5-flash-lite", displayName: "Flash Lite", tier: "fast" },
|
|
3646
3646
|
{ id: "gemini-2.5-flash", displayName: "Flash", tier: "default" },
|
|
3647
|
-
{ id: "gemini-2.5-pro", displayName: "Pro", tier: "thorough" }
|
|
3647
|
+
{ id: "gemini-2.5-pro", displayName: "Pro 2.5", tier: "thorough" },
|
|
3648
|
+
{ id: "gemini-3.1-pro-preview", displayName: "Pro 3.1", tier: "thorough" }
|
|
3648
3649
|
],
|
|
3649
3650
|
streamFormat: "jsonl"
|
|
3650
3651
|
};
|
|
@@ -4838,4 +4839,4 @@ export {
|
|
|
4838
4839
|
runPipeline,
|
|
4839
4840
|
stopPipeline
|
|
4840
4841
|
};
|
|
4841
|
-
//# sourceMappingURL=pipeline-
|
|
4842
|
+
//# sourceMappingURL=pipeline-CA5Q3SPA.js.map
|