@@ -52,8 +52,8 @@ Lists all the available built-in tools.
52
52
const gptscript = require (' @gptscript-ai/gptscript' );
53
53
54
54
async function listTools () {
55
- const tools = await gptscript .listTools ();
56
- console .log (tools);
55
+ const tools = await gptscript .listTools ();
56
+ console .log (tools);
57
57
}
58
58
```
59
59
@@ -67,12 +67,12 @@ Lists all the available models, returns a list.
67
67
const gptscript = require (' @gptscript-ai/gptscript' );
68
68
69
69
async function listModels () {
70
- let models = [];
71
- try {
72
- models = await gptscript .listModels ();
73
- } catch (error) {
74
- console .error (error);
75
- }
70
+ let models = [];
71
+ try {
72
+ models = await gptscript .listModels ();
73
+ } catch (error) {
74
+ console .error (error);
75
+ }
76
76
}
77
77
```
78
78
@@ -86,11 +86,11 @@ Get the first of the current `gptscript` binary being used for the calls.
86
86
const gptscript = require (' @gptscript-ai/gptscript' );
87
87
88
88
async function version () {
89
- try {
90
- console .log (await gptscript .version ());
91
- } catch (error) {
92
- console .error (error);
93
- }
89
+ try {
90
+ console .log (await gptscript .version ());
91
+ } catch (error) {
92
+ console .error (error);
93
+ }
94
94
}
95
95
```
96
96
@@ -103,14 +103,14 @@ representing the contents of a gptscript file.
103
103
const gptscript = require (' @gptscript-ai/gptscript' );
104
104
105
105
const t = {
106
- instructions: " Who was the president of the united states in 1928?"
106
+ instructions: " Who was the president of the united states in 1928?"
107
107
};
108
108
109
109
try {
110
- const run = gptscript .evaluate (t);
111
- console .log (await run .text ());
110
+ const run = gptscript .evaluate (t);
111
+ console .log (await run .text ());
112
112
} catch (error) {
113
- console .error (error);
113
+ console .error (error);
114
114
}
115
115
```
116
116
@@ -122,17 +122,17 @@ Executes a GPT script file with optional input and arguments. The script is rela
122
122
const gptscript = require (' @gptscript-ai/gptscript' );
123
123
124
124
const opts = {
125
- disableCache: true ,
126
- input: " --input World"
125
+ disableCache: true ,
126
+ input: " --input World"
127
127
};
128
128
129
129
async function execFile () {
130
- try {
131
- const run = gptscript .run (' ./hello.gpt' , opts);
132
- console .log (await run .text ());
133
- } catch (e) {
134
- console .error (e);
135
- }
130
+ try {
131
+ const run = gptscript .run (' ./hello.gpt' , opts);
132
+ console .log (await run .text ());
133
+ } catch (e) {
134
+ console .error (e);
135
+ }
136
136
}
137
137
```
138
138
@@ -159,22 +159,72 @@ Subscribing to `RunEventType.Event` gets you all events.
159
159
const gptscript = require (' @gptscript-ai/gptscript' );
160
160
161
161
const opts = {
162
- disableCache: true ,
163
- input: " --testin how high is that there mouse?"
162
+ disableCache: true ,
163
+ input: " --testin how high is that there mouse?"
164
164
};
165
165
166
166
async function streamExecFileWithEvents () {
167
- try {
168
- const run = gptscript .run (' ./test.gpt' , opts);
167
+ try {
168
+ const run = gptscript .run (' ./test.gpt' , opts);
169
169
170
- run .on (gptscript .RunEventType .Event , data => {
171
- console .log (` event: ${ data} ` );
172
- });
170
+ run .on (gptscript .RunEventType .Event , data => {
171
+ console .log (` event: ${ data} ` );
172
+ });
173
173
174
- await run .text ();
175
- } catch (e) {
176
- console .error (e);
177
- }
174
+ await run .text ();
175
+ } catch (e) {
176
+ console .error (e);
177
+ }
178
+ }
179
+ ```
180
+
181
+ ### Chat support
182
+
183
+ For tools that support chat, you can use the ` nextChat ` method on the run object to continue the chat. This method takes
184
+ a string representing the next chat message from the user.
185
+
186
+ If the chat can/should continue, then the ` Run ` 's state will be ` RunState.Continue ` . Note that calling ` nextChat ` on
187
+ a ` Run ` object is an error. Each call to ` nextChat ` will return a new ` Run ` instance, so, the call can keep track of the
188
+ chat ` Run ` s, if desired.
189
+
190
+ Here is an example flow for chat.
191
+
192
+ ``` javascript
193
+ const gptscript = require (' @gptscript-ai/gptscript' );
194
+
195
+ const opts = {
196
+ disableCache: true
197
+ };
198
+
199
+ const t = {
200
+ chat: true ,
201
+ tools: [" sys.chat.finish" ],
202
+ instructions: " You are a chat bot. Don't finish the conversation until I say 'bye'."
203
+ };
204
+
205
+ async function streamExecFileWithEvents () {
206
+ let run = gptscript .evaluate (t, opts);
207
+ try {
208
+ // Wait for the initial run to complete.
209
+ await run .text ();
210
+
211
+ while (run .RunState === gptscript .RunState .Continue ) {
212
+ // ...Get the next input from the user somehow...
213
+
214
+ run = run .nextChat (inputFromUser)
215
+
216
+ // Get the output from gptscript
217
+ const output = await run .text ()
218
+
219
+ // Display the output to the user...
220
+ }
221
+ } catch (e) {
222
+ console .error (e);
223
+ }
224
+
225
+
226
+ // The state here should either be RunState.Finished (on success) or RunState.Error (on error).
227
+ console .log (run .state )
178
228
}
179
229
```
180
230
0 commit comments