pi-web-providers 0.2.0 → 1.0.0
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 +176 -193
- package/dist/index.js +5962 -1791
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-web-providers",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Configurable web access extension for pi
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Configurable web access extension for pi with per-tool provider routing for search, contents, answers, and research across Claude, Codex, Exa, Gemini, Perplexity, Parallel, and Valyu.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"codex",
|
|
18
18
|
"exa",
|
|
19
19
|
"gemini",
|
|
20
|
+
"perplexity",
|
|
20
21
|
"parallel",
|
|
21
22
|
"valyu"
|
|
22
23
|
],
|
|
@@ -27,7 +28,7 @@
|
|
|
27
28
|
"url": "git+https://github.com/mavam/pi-web-providers.git"
|
|
28
29
|
},
|
|
29
30
|
"engines": {
|
|
30
|
-
"node": ">=
|
|
31
|
+
"node": ">=24.0.0"
|
|
31
32
|
},
|
|
32
33
|
"publishConfig": {
|
|
33
34
|
"access": "public"
|
|
@@ -38,7 +39,7 @@
|
|
|
38
39
|
]
|
|
39
40
|
},
|
|
40
41
|
"scripts": {
|
|
41
|
-
"build": "rm -rf dist && esbuild src/index.ts --bundle --format=esm --platform=node --outfile=dist/index.js --external:@mariozechner/pi-coding-agent --external:@mariozechner/pi-ai --external:@mariozechner/pi-tui --external:@sinclair/typebox --external:@anthropic-ai/claude-agent-sdk --external:@google/genai --external:@openai/codex-sdk --external:exa-js --external:parallel-web --external:valyu-js",
|
|
42
|
+
"build": "rm -rf dist && esbuild src/index.ts --bundle --format=esm --platform=node --outfile=dist/index.js --external:@mariozechner/pi-coding-agent --external:@mariozechner/pi-ai --external:@mariozechner/pi-tui --external:@sinclair/typebox --external:@anthropic-ai/claude-agent-sdk --external:@google/genai --external:@openai/codex-sdk --external:@perplexity-ai/perplexity_ai --external:exa-js --external:parallel-web --external:valyu-js",
|
|
42
43
|
"prepare": "npm run build",
|
|
43
44
|
"prepack": "npm run build",
|
|
44
45
|
"check": "tsc --noEmit",
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
"@anthropic-ai/claude-agent-sdk": "^0.2.71",
|
|
52
53
|
"@google/genai": "^1.44.0",
|
|
53
54
|
"@openai/codex-sdk": "^0.111.0",
|
|
55
|
+
"@perplexity-ai/perplexity_ai": "^0.26.1",
|
|
54
56
|
"exa-js": "^2.7.0",
|
|
55
57
|
"parallel-web": "^0.3.1",
|
|
56
58
|
"valyu-js": "^2.5.9",
|