pi-grok-search 2.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.
Files changed (5) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +151 -0
  3. package/README_EN.md +150 -0
  4. package/index.ts +1972 -0
  5. package/package.json +27 -0
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "pi-grok-search",
3
+ "version": "2.0.0",
4
+ "description": "Grok Search Extension for pi - 双引擎架构:Grok AI 搜索 + Tavily 抓取 + Firecrawl 托底",
5
+ "keywords": ["pi-package", "pi-extension", "grok", "search", "tavily", "firecrawl"],
6
+ "type": "module",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/justhiL/pi-grok-search.git"
11
+ },
12
+ "pi": {
13
+ "extensions": ["./index.ts"],
14
+ "image": "https://raw.githubusercontent.com/justhiL/pi-grok-search/main/screenshot.png"
15
+ },
16
+ "peerDependencies": {
17
+ "@earendil-works/pi-ai": "*",
18
+ "@earendil-works/pi-coding-agent": "*",
19
+ "@earendil-works/pi-tui": "*",
20
+ "typebox": "*"
21
+ },
22
+ "scripts": {
23
+ "clean": "echo 'nothing to clean'",
24
+ "build": "echo 'nothing to build'"
25
+ },
26
+ "dependencies": {}
27
+ }