@baryonlabs/cli 0.2.0 → 0.2.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/README.md +2 -0
- package/package.json +1 -1
- package/src/constants.js +3 -1
package/README.md
CHANGED
|
@@ -56,6 +56,8 @@ baryon --provider openai # 다른 모델로 전환·비교
|
|
|
56
56
|
- **인터랙티브 셸** ([pi-interactive-shell](https://github.com/nicobailon/pi-interactive-shell))
|
|
57
57
|
- **웹 액세스** ([pi-web-access](https://github.com/nicobailon/pi-web-access))
|
|
58
58
|
- **웹 페치** ([pi-web-fetch](https://github.com/georgebashi/pi-web-fetch))
|
|
59
|
+
- **웹 검색** ([pi-search](https://github.com/buddingnewinsights/pi-search))
|
|
60
|
+
- **병렬 웹 검색** ([pi-parallel-web-search](https://github.com/philipp-spiess/pi-parallel-web-search))
|
|
59
61
|
|
|
60
62
|
## 설정
|
|
61
63
|
|
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -57,7 +57,9 @@ export const DEFAULT_EXTENSIONS = [
|
|
|
57
57
|
{ name: "pi-canvas", src: "https://github.com/jyaunches/pi-canvas", note: "캔버스" },
|
|
58
58
|
{ name: "pi-interactive-shell", src: "https://github.com/nicobailon/pi-interactive-shell", note: "인터랙티브 셸" },
|
|
59
59
|
{ name: "pi-web-access", src: "https://github.com/nicobailon/pi-web-access", note: "웹 액세스(브라우징)" },
|
|
60
|
-
{ name: "pi-web-fetch", src: "https://github.com/georgebashi/pi-web-fetch", note: "웹 페치" }
|
|
60
|
+
{ name: "pi-web-fetch", src: "https://github.com/georgebashi/pi-web-fetch", note: "웹 페치" },
|
|
61
|
+
{ name: "pi-search", src: "https://github.com/buddingnewinsights/pi-search", note: "웹 검색" },
|
|
62
|
+
{ name: "pi-parallel-web-search", src: "https://github.com/philipp-spiess/pi-parallel-web-search", note: "병렬 웹 검색" }
|
|
61
63
|
];
|
|
62
64
|
|
|
63
65
|
export const HOMEPAGE = "https://cli.baryon.ai";
|