@@ -18,8 +18,8 @@ running `npm install`.
18
18
19
19
## Usage
20
20
21
- To use the module and run gptscripts, you need to first set the OPENAI_API_KEY environment variable to your OpenAI API
22
- key.
21
+ To use the module and run gptscripts, you need to first set the ` OPENAI_API_KEY ` environment variable to your OpenAI API
22
+ key. You can also set the ` GPTSCRIPT_BIN ` environment variable to change the execution of the gptscripts.
23
23
24
24
To ensure it is working properly, you can run the following command:
25
25
@@ -31,23 +31,24 @@ You will see "Hello, World!" in the output of the command.
31
31
32
32
## Client
33
33
34
- There are currently a couple "global" options, and the client helps to manage those. A client without any options is
35
- likely what you want. However, here are the current global options:
36
-
37
- - ` gptscriptURL ` : The URL (including `http(s)://) of an "SDK server" to use instead of the fork/exec model.
38
- - ` gptscriptBin ` : The path to a ` gptscript ` binary to use instead of the bundled one.
34
+ The client allows the caller to run gptscript files, tools, and other operations (see below). There are currently no
35
+ options for this singleton client, so ` new gptscript.Client() ` is all you need. Although, the intention is that a
36
+ single client is all you need for the life of your application, you should call ` close() ` on the client when you are
37
+ done.
39
38
40
39
## Options
41
40
42
41
These are optional options that can be passed to the various ` exec ` functions.
43
42
None of the options is required, and the defaults will reduce the number of calls made to the Model API.
44
43
45
- - ` disableCache ` : Enable or disable caching, default (true)
46
- - ` cacheDir ` : Specify the cache directory
44
+ - ` cache ` : Enable or disable caching. Default (true).
45
+ - ` cacheDir ` : Specify the cache directory.
47
46
- ` quiet ` : No output logging
48
- - ` chdir ` : Change current working directory
49
47
- ` subTool ` : Use tool of this name, not the first tool
48
+ - ` input ` : Input arguments for the tool run
50
49
- ` workspace ` : Directory to use for the workspace, if specified it will not be deleted on exit
50
+ - ` chatState ` : The chat state to continue, or null to start a new chat and return the state
51
+ - ` confirm ` : Prompt before running potentially dangerous commands
51
52
52
53
## Functions
53
54
@@ -64,6 +65,7 @@ async function listTools() {
64
65
const client = new gptscript.Client ();
65
66
const tools = await client .listTools ();
66
67
console .log (tools);
68
+ client .close ()
67
69
}
68
70
```
69
71
@@ -78,12 +80,13 @@ const gptscript = require('@gptscript-ai/gptscript');
78
80
79
81
async function listModels () {
80
82
let models = [];
83
+ const client = new gptscript.Client ();
81
84
try {
82
- const client = new gptscript.Client ();
83
85
models = await client .listModels ();
84
86
} catch (error) {
85
87
console .error (error);
86
88
}
89
+ client .close ()
87
90
}
88
91
```
89
92
@@ -97,12 +100,13 @@ Get the first of the current `gptscript` binary being used for the calls.
97
100
const gptscript = require (' @gptscript-ai/gptscript' );
98
101
99
102
async function version () {
103
+ const client = new gptscript.Client ();
100
104
try {
101
- const client = new gptscript.Client ();
102
105
console .log (await client .version ());
103
106
} catch (error) {
104
107
console .error (error);
105
108
}
109
+ client .close ()
106
110
}
107
111
```
108
112
@@ -118,13 +122,14 @@ const t = {
118
122
instructions: " Who was the president of the united states in 1928?"
119
123
};
120
124
125
+ const client = new gptscript.Client ();
121
126
try {
122
- const client = new gptscript.Client ();
123
- const run = client .evaluate (t);
127
+ const run = await client .evaluate (t);
124
128
console .log (await run .text ());
125
129
} catch (error) {
126
130
console .error (error);
127
131
}
132
+ client .close ();
128
133
```
129
134
130
135
### run
@@ -140,13 +145,14 @@ const opts = {
140
145
};
141
146
142
147
async function execFile () {
148
+ const client = new gptscript.Client ();
143
149
try {
144
- const client = new gptscript.Client ();
145
- const run = client .run (' ./hello.gpt' , opts);
150
+ const run = await client .run (' ./hello.gpt' , opts);
146
151
console .log (await run .text ());
147
152
} catch (e) {
148
153
console .error (e);
149
154
}
155
+ client .close ();
150
156
}
151
157
```
152
158
@@ -156,17 +162,6 @@ The `Run` object exposes event handlers so callers can access the progress event
156
162
157
163
The ` Run ` object exposes these events with their corresponding event type:
158
164
159
- | Event type | Event object |
160
- | ---------------------------| -------------------|
161
- | RunEventType.RunStart | RunStartFrame |
162
- | RunEventType.RunFinish | RunFinishFrame |
163
- | RunEventType.CallStart | CallStartFrame |
164
- | RunEventType.CallChat | CallChatFrame |
165
- | RunEventType.CallContinue | CallContinueFrame |
166
- | RunEventType.CallProgress | CallProgressFrame |
167
- | RunEventType.CallFinish | CallFinishFrame |
168
- | RunEventType.Event | Frame |
169
-
170
165
Subscribing to ` RunEventType.Event ` gets you all events.
171
166
172
167
``` javascript
@@ -178,9 +173,9 @@ const opts = {
178
173
};
179
174
180
175
async function streamExecFileWithEvents () {
176
+ const client = new gptscript.Client ();
181
177
try {
182
- const client = new gptscript.Client ();
183
- const run = client .run (' ./test.gpt' , opts);
178
+ const run = await client .run (' ./test.gpt' , opts);
184
179
185
180
run .on (gptscript .RunEventType .Event , data => {
186
181
console .log (` event: ${ JSON .stringify (data)} ` );
@@ -190,6 +185,45 @@ async function streamExecFileWithEvents() {
190
185
} catch (e) {
191
186
console .error (e);
192
187
}
188
+ client .close ();
189
+ }
190
+ ```
191
+
192
+ ### Confirm
193
+
194
+ If a gptscript can run commands, you may want to inspect and confirm/deny the command before they are run. This can be
195
+ done with the ` confirm ` method. A user should listen for the ` RunEventType.CallConfirm ` event.
196
+
197
+ ``` javascript
198
+ const gptscript = require (' @gptscript-ai/gptscript' );
199
+
200
+ const opts = {
201
+ disableCache: true ,
202
+ input: " --testin how high is that there mouse?" ,
203
+ confirm: true
204
+ };
205
+
206
+ async function streamExecFileWithEvents () {
207
+ const client = new gptscript.Client ();
208
+ try {
209
+ const run = await client .run (' ./test.gpt' , opts);
210
+
211
+ run .on (gptscript .RunEventType .CallConfirm , async (data : gptscript .CallFrame ) => {
212
+ // data.Tool has the information for the command being run.
213
+ // data.Input has the input for this command
214
+
215
+ await client .confirm ({
216
+ id: data .id ,
217
+ accept: true , // false if the command should not be run
218
+ message: " " , // Explain the denial (ignored if accept is true)
219
+ })
220
+ });
221
+
222
+ await run .text ();
223
+ } catch (e) {
224
+ console .error (e);
225
+ }
226
+ client .close ();
193
227
}
194
228
```
195
229
@@ -219,7 +253,7 @@ const t = {
219
253
220
254
async function streamExecFileWithEvents () {
221
255
const client = new gptscript.Client ();
222
- let run = client .evaluate (t, opts);
256
+ let run = await client .evaluate (t, opts);
223
257
try {
224
258
// Wait for the initial run to complete.
225
259
await run .text ();
@@ -238,6 +272,7 @@ async function streamExecFileWithEvents() {
238
272
console .error (e);
239
273
}
240
274
275
+ client .close ();
241
276
242
277
// The state here should either be RunState.Finished (on success) or RunState.Error (on error).
243
278
console .log (run .state )
0 commit comments