@oh-my-pi/exa 0.8.3 → 0.9.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 +1 -6
- package/package.json +3 -36
- /package/tools/{exa/company.ts → company.ts} +0 -0
- /package/tools/{exa/index.ts → index.ts} +0 -0
- /package/tools/{exa/linkedin.ts → linkedin.ts} +0 -0
- /package/tools/{exa/researcher.ts → researcher.ts} +0 -0
- /package/tools/{exa/runtime.json → runtime.json} +0 -0
- /package/tools/{exa/search.ts → search.ts} +0 -0
- /package/tools/{exa/shared.ts → shared.ts} +0 -0
- /package/tools/{exa/websets.ts → websets.ts} +0 -0
package/README.md
CHANGED
|
@@ -34,12 +34,7 @@ omp features @oh-my-pi/exa --disable search # Disable search
|
|
|
34
34
|
omp features @oh-my-pi/exa --set search,linkedin,websets # Set exact features
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
Feature state is stored in `runtime.json`
|
|
38
|
-
|
|
39
|
-
```bash
|
|
40
|
-
cat ~/.pi/agent/tools/exa/runtime.json
|
|
41
|
-
# {"features": ["search"], "options": {}}
|
|
42
|
-
```
|
|
37
|
+
Feature state is stored in the plugin's `runtime.json` in node_modules and managed by omp.
|
|
43
38
|
|
|
44
39
|
## Setup
|
|
45
40
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oh-my-pi/exa",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Exa AI web search and websets tools for pi",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"omp-plugin",
|
|
@@ -17,41 +17,8 @@
|
|
|
17
17
|
"directory": "plugins/exa"
|
|
18
18
|
},
|
|
19
19
|
"omp": {
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
"src": "tools/exa/runtime.json",
|
|
23
|
-
"dest": "agent/tools/exa/runtime.json",
|
|
24
|
-
"copy": true
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"src": "tools/exa/index.ts",
|
|
28
|
-
"dest": "agent/tools/exa/index.ts"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"src": "tools/exa/shared.ts",
|
|
32
|
-
"dest": "agent/tools/exa/shared.ts"
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"src": "tools/exa/search.ts",
|
|
36
|
-
"dest": "agent/tools/exa/search.ts"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"src": "tools/exa/linkedin.ts",
|
|
40
|
-
"dest": "agent/tools/exa/linkedin.ts"
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"src": "tools/exa/company.ts",
|
|
44
|
-
"dest": "agent/tools/exa/company.ts"
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"src": "tools/exa/researcher.ts",
|
|
48
|
-
"dest": "agent/tools/exa/researcher.ts"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"src": "tools/exa/websets.ts",
|
|
52
|
-
"dest": "agent/tools/exa/websets.ts"
|
|
53
|
-
}
|
|
54
|
-
],
|
|
20
|
+
"tools": "tools",
|
|
21
|
+
"runtime": "tools/runtime.json",
|
|
55
22
|
"variables": {
|
|
56
23
|
"apiKey": {
|
|
57
24
|
"type": "string",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|