@baryonlabs/cli 0.3.4 → 0.3.5
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 +1 -1
- package/src/constants.js +6 -3
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -92,8 +92,7 @@ export const DEFAULT_MODELS = [
|
|
|
92
92
|
*/
|
|
93
93
|
export const DEFAULT_EXTENSIONS = [
|
|
94
94
|
{ name: "pi-canvas", src: "https://github.com/jyaunches/pi-canvas", note: "캔버스" },
|
|
95
|
-
{ name: "pi-interactive-shell", src: "https://github.com/nicobailon/pi-interactive-shell", note: "인터랙티브 셸" }
|
|
96
|
-
{ name: "pi-parallel-web-search", src: "https://github.com/philipp-spiess/pi-parallel-web-search", note: "병렬 웹 검색" }
|
|
95
|
+
{ name: "pi-interactive-shell", src: "https://github.com/nicobailon/pi-interactive-shell", note: "인터랙티브 셸" }
|
|
97
96
|
];
|
|
98
97
|
|
|
99
98
|
/**
|
|
@@ -111,7 +110,11 @@ export const DEPRECATED_EXTENSIONS = [
|
|
|
111
110
|
// path → "Cannot find module …/pi-ai/dist/index.js/compat". Both hard-fail
|
|
112
111
|
// startup; prune from existing installs. (web search remains via pi-parallel-web-search.)
|
|
113
112
|
{ name: "pi-subagents", src: "https://github.com/nicobailon/pi-subagents", owner: "nicobailon" },
|
|
114
|
-
{ name: "pi-web-access", src: "https://github.com/nicobailon/pi-web-access", owner: "nicobailon" }
|
|
113
|
+
{ name: "pi-web-access", src: "https://github.com/nicobailon/pi-web-access", owner: "nicobailon" },
|
|
114
|
+
// pi ≥0.78 ships a built-in `websearch` (Wikipedia-backed web_search + web_fetch,
|
|
115
|
+
// NO key). pi-parallel-web-search needs PARALLEL_API_KEY → "web_search: PARALLEL_API_KEY
|
|
116
|
+
// not set — tool disabled" noise + redundant. Prune it; search stays via built-in.
|
|
117
|
+
{ name: "pi-parallel-web-search", src: "https://github.com/philipp-spiess/pi-parallel-web-search", owner: "philipp-spiess" }
|
|
115
118
|
];
|
|
116
119
|
|
|
117
120
|
/**
|