pi-vision-handoff 0.6.0 → 0.6.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/package.json +4 -4
- package/src/index.ts +1 -0
- package/vision-handoff.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-vision-handoff",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Give text-only pi models vision — describe images with a vision model you pick via an interactive picker, then hand off the text description to non-vision models",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Tom X Nguyen",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"README.md"
|
|
32
32
|
],
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@earendil-works/pi-ai": "0.80.
|
|
35
|
-
"@earendil-works/pi-coding-agent": "0.80.
|
|
36
|
-
"@earendil-works/pi-tui": "0.80.
|
|
34
|
+
"@earendil-works/pi-ai": "0.80.6",
|
|
35
|
+
"@earendil-works/pi-coding-agent": "0.80.6",
|
|
36
|
+
"@earendil-works/pi-tui": "0.80.6",
|
|
37
37
|
"@types/node": "25.9.1",
|
|
38
38
|
"@vitest/coverage-v8": "4.1.7",
|
|
39
39
|
"knip": "6.14.1",
|
package/src/index.ts
CHANGED
package/vision-handoff.ts
CHANGED
|
@@ -553,7 +553,7 @@ async function handleHandoffCommand(ctx: ExtensionCommandContext, args: string):
|
|
|
553
553
|
" /vision-handoff enable Enable vision handoff",
|
|
554
554
|
" /vision-handoff disable Disable vision handoff (keeps configured model)",
|
|
555
555
|
" /vision-handoff auto <on|off> Toggle automatic handoff for all non-vision models",
|
|
556
|
-
" /vision-handoff thinking <off|minimal|low|medium|high|xhigh>",
|
|
556
|
+
" /vision-handoff thinking <off|minimal|low|medium|high|xhigh|max>",
|
|
557
557
|
" Set the vision describer's thinking effort (off = disabled)",
|
|
558
558
|
" /vision-handoff prewarm <on|off>",
|
|
559
559
|
" Toggle describing pasted images at paste-time (opt-in, off by default)",
|
|
@@ -714,7 +714,7 @@ function handleThinkingSubcommand(ctx: ExtensionCommandContext, rest: string): v
|
|
|
714
714
|
if (!arg) {
|
|
715
715
|
ctx.ui.notify(
|
|
716
716
|
`Thinking: ${config.thinking ? `on (${config.thinkingLevel})` : "off"}.\n` +
|
|
717
|
-
`Usage: /vision-handoff thinking <off|minimal|low|medium|high|xhigh>`,
|
|
717
|
+
`Usage: /vision-handoff thinking <off|minimal|low|medium|high|xhigh|max>`,
|
|
718
718
|
"info",
|
|
719
719
|
);
|
|
720
720
|
return;
|
|
@@ -725,7 +725,7 @@ function handleThinkingSubcommand(ctx: ExtensionCommandContext, rest: string): v
|
|
|
725
725
|
}
|
|
726
726
|
if (!isThinkingLevel(arg)) {
|
|
727
727
|
ctx.ui.notify(
|
|
728
|
-
`Unknown thinking level: "${arg}". Use off, minimal, low, medium, high, or
|
|
728
|
+
`Unknown thinking level: "${arg}". Use off, minimal, low, medium, high, xhigh, or max.`,
|
|
729
729
|
"error",
|
|
730
730
|
);
|
|
731
731
|
return;
|