pi-web-providers 0.1.0 → 0.2.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 +69 -40
- package/dist/index.js +1010 -147
- package/package.json +7 -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 that routes search, contents, answers, and research across Codex, Exa, Gemini, Parallel, and Valyu providers.",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Configurable web access extension for pi that routes search, contents, answers, and research across Claude, Codex, Exa, Gemini, Parallel, and Valyu providers.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"pi-extension",
|
|
14
14
|
"coding-agent",
|
|
15
15
|
"web-search",
|
|
16
|
+
"claude",
|
|
16
17
|
"codex",
|
|
17
18
|
"exa",
|
|
18
19
|
"gemini",
|
|
@@ -37,7 +38,7 @@
|
|
|
37
38
|
]
|
|
38
39
|
},
|
|
39
40
|
"scripts": {
|
|
40
|
-
"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:@google/genai --external:@openai/codex-sdk --external:exa-js --external:parallel-web --external:valyu-js",
|
|
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",
|
|
41
42
|
"prepare": "npm run build",
|
|
42
43
|
"prepack": "npm run build",
|
|
43
44
|
"check": "tsc --noEmit",
|
|
@@ -47,11 +48,13 @@
|
|
|
47
48
|
"test:watch": "vitest"
|
|
48
49
|
},
|
|
49
50
|
"dependencies": {
|
|
51
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.71",
|
|
50
52
|
"@google/genai": "^1.44.0",
|
|
51
53
|
"@openai/codex-sdk": "^0.111.0",
|
|
52
54
|
"exa-js": "^2.7.0",
|
|
53
55
|
"parallel-web": "^0.3.1",
|
|
54
|
-
"valyu-js": "^2.5.9"
|
|
56
|
+
"valyu-js": "^2.5.9",
|
|
57
|
+
"zod": "^4.1.11"
|
|
55
58
|
},
|
|
56
59
|
"devDependencies": {
|
|
57
60
|
"@biomejs/biome": "^2.4.6",
|