@victor-software-house/pi-openai-proxy 4.2.5 → 4.2.6

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.
@@ -565,8 +565,8 @@ export default function proxyExtension(pi: ExtensionAPI): void {
565
565
  id: canonical,
566
566
  label: canonical,
567
567
  description: `Provider: ${m.provider} | Left/Right: jump provider`,
568
- currentValue: selected.has(canonical) ? "on" : "off",
569
- values: ["on", "off"],
568
+ currentValue: selected.has(canonical) ? "true" : "false",
569
+ values: ["true", "false"],
570
570
  };
571
571
  });
572
572
 
@@ -575,7 +575,7 @@ export default function proxyExtension(pi: ExtensionAPI): void {
575
575
  Math.min(items.length + 2, 20),
576
576
  getSettingsListTheme(),
577
577
  (id: string, newValue: string) => {
578
- if (newValue === "on") {
578
+ if (newValue === "true") {
579
579
  selected.add(id);
580
580
  } else {
581
581
  selected.delete(id);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@victor-software-house/pi-openai-proxy",
3
- "version": "4.2.5",
3
+ "version": "4.2.6",
4
4
  "description": "OpenAI-compatible HTTP proxy for pi's multi-provider model registry",
5
5
  "license": "MIT",
6
6
  "author": "Victor Software House",