forked from Cobular/raycast-openinterpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.85 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "openinterpreter",
"title": "Open Interpreter - Any Command, On The Spot",
"description": "Run Open Interpreter from the comfort of Raycast! Enables AI code execution to do anything you need, on your local machine-.",
"icon": "command-icon.png",
"author": "Cobular",
"categories": [
"Developer Tools",
"Productivity",
"System"
],
"license": "MIT",
"commands": [
{
"name": "index",
"title": "Run Open Interpreter",
"subtitle": "OpenInterpreter",
"description": "Starts an open interpreter session",
"mode": "view",
"icon": "command-icon.png"
}
],
"dependencies": {
"@raycast/api": "^1.56.0",
"@raycast/utils": "^1.10.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@raycast/eslint-config": "1.0.5",
"@types/node": "18.8.3",
"@types/react": "18.0.9",
"eslint": "^7.32.0",
"prettier": "^2.5.1",
"pythonia": "^1.0.4",
"react-async": "^10.0.1",
"typescript": "^4.4.3"
},
"preferences": [
{
"name": "openinterpreter-api-key",
"title": "API Key",
"description": "Your API Key for the Company You've Selected",
"type": "textfield",
"required": true
},
{
"title": "Model",
"name": "openinterpreter-model",
"description": "The model to use for OpenAI",
"required": true,
"default": "gpt-4",
"type": "dropdown",
"data": [
{
"title": "GPT 4",
"value": "gpt-4"
},
{
"title": "GPT 4 32K",
"value": "gpt-4-32k"
},
{
"title": "GPT 3.5",
"value": "gpt-3.5-turbo"
},
{
"title": "GPT 3.5 16k",
"value": "gpt-3.5-turbo-16k"
},
{
"title": "Claude Instant 1",
"value": "claude-instant-1"
},
{
"title": "Claude Instant 1.2",
"value": "claude-instant-1.2"
},
{
"title": "Claude Instant 2",
"value": "claude-instant-2"
}
]
},
{
"title": "Base URL",
"name": "openinterpreter-base-url",
"description": "The base URL variable to inject. Doesn't always do something, depends on the company. Optional.",
"required": false,
"type": "textfield"
},
{
"title": "Budget",
"name": "openinterpreter-budget",
"description": "The budget (in USD) of a single session. Optional.",
"required": false,
"type": "textfield",
"placeholder": "1.50"
}
],
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish",
"build:py": ". ./venv/bin/activate && pyinstaller --distpath assets ./py_src/main.spec"
}
}