-
Notifications
You must be signed in to change notification settings - Fork 8
/
gptscript_test.go
1562 lines (1310 loc) · 36.7 KB
/
gptscript_test.go
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package gptscript
import (
"context"
"errors"
"fmt"
"math/rand"
"os"
"path/filepath"
"runtime"
"strconv"
"strings"
"testing"
"github.com/getkin/kin-openapi/openapi3"
"github.com/stretchr/testify/require"
)
var g *GPTScript
func TestMain(m *testing.M) {
if os.Getenv("OPENAI_API_KEY") == "" && os.Getenv("GPTSCRIPT_URL") == "" {
panic("OPENAI_API_KEY or GPTSCRIPT_URL environment variable must be set")
}
// Start an initial GPTScript instance.
// This one doesn't have any options, but it's there to ensure that using another instance works as expected in all cases.
gFirst, err := NewGPTScript(GlobalOptions{})
if err != nil {
panic(fmt.Sprintf("error creating gptscript: %s", err))
}
g, err = NewGPTScript(GlobalOptions{OpenAIAPIKey: os.Getenv("OPENAI_API_KEY")})
if err != nil {
gFirst.Close()
panic(fmt.Sprintf("error creating gptscript: %s", err))
}
exitCode := m.Run()
g.Close()
gFirst.Close()
os.Exit(exitCode)
}
func TestCreateAnotherGPTScript(t *testing.T) {
g, err := NewGPTScript(GlobalOptions{})
if err != nil {
t.Errorf("error creating gptscript: %s", err)
}
defer g.Close()
version, err := g.Version(context.Background())
if err != nil {
t.Errorf("error getting version from second gptscript: %s", err)
}
if !strings.Contains(version, "gptscript version") {
t.Errorf("unexpected gptscript version: %s", version)
}
}
func TestVersion(t *testing.T) {
out, err := g.Version(context.Background())
if err != nil {
t.Errorf("Error getting version: %v", err)
}
if !strings.HasPrefix(out, "gptscript version") {
t.Errorf("Unexpected output: %s", out)
}
}
func TestListModels(t *testing.T) {
models, err := g.ListModels(context.Background())
if err != nil {
t.Errorf("Error listing models: %v", err)
}
if len(models) == 0 {
t.Error("No models found")
}
}
func TestListModelsWithProvider(t *testing.T) {
if os.Getenv("ANTHROPIC_API_KEY") == "" {
t.Skip("ANTHROPIC_API_KEY not set")
}
models, err := g.ListModels(context.Background(), ListModelsOptions{
Providers: []string{"github.com/gptscript-ai/claude3-anthropic-provider"},
CredentialOverrides: []string{"github.com/gptscript-ai/claude3-anthropic-provider/credential:ANTHROPIC_API_KEY"},
})
if err != nil {
t.Errorf("Error listing models: %v", err)
}
if len(models) == 0 {
t.Error("No models found")
}
for _, model := range models {
if !strings.HasPrefix(model, "claude-3-") || !strings.HasSuffix(model, "from github.com/gptscript-ai/claude3-anthropic-provider") {
t.Errorf("Unexpected model name: %s", model)
}
}
}
func TestListModelsWithDefaultProvider(t *testing.T) {
if os.Getenv("ANTHROPIC_API_KEY") == "" {
t.Skip("ANTHROPIC_API_KEY not set")
}
g, err := NewGPTScript(GlobalOptions{
DefaultModelProvider: "github.com/gptscript-ai/claude3-anthropic-provider",
})
if err != nil {
t.Fatalf("Error creating gptscript: %v", err)
}
defer g.Close()
models, err := g.ListModels(context.Background(), ListModelsOptions{
CredentialOverrides: []string{"github.com/gptscript-ai/claude3-anthropic-provider/credential:ANTHROPIC_API_KEY"},
})
if err != nil {
t.Errorf("Error listing models: %v", err)
}
if len(models) == 0 {
t.Error("No models found")
}
for _, model := range models {
if !strings.HasPrefix(model, "claude-3-") || !strings.HasSuffix(model, "from github.com/gptscript-ai/claude3-anthropic-provider") {
t.Errorf("Unexpected model name: %s", model)
}
}
}
func TestAbortRun(t *testing.T) {
tool := ToolDef{Instructions: "What is the capital of the united states?"}
run, err := g.Evaluate(context.Background(), Options{DisableCache: true, IncludeEvents: true}, tool)
if err != nil {
t.Errorf("Error executing tool: %v", err)
}
// Abort the run after the first event.
<-run.Events()
if err := run.Close(); err != nil {
t.Errorf("Error aborting run: %v", err)
}
if run.State() != Error {
t.Errorf("Unexpected run state: %s", run.State())
}
if run.Err() == nil {
t.Error("Expected error but got nil")
}
}
func TestSimpleEvaluate(t *testing.T) {
tool := ToolDef{Instructions: "What is the capital of the united states?"}
run, err := g.Evaluate(context.Background(), Options{DisableCache: true}, tool)
if err != nil {
t.Errorf("Error executing tool: %v", err)
}
out, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
if !strings.Contains(out, "Washington") {
t.Errorf("Unexpected output: %s", out)
}
// This should be able to be called multiple times and produce the same answer.
out, err = run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
if !strings.Contains(out, "Washington") {
t.Errorf("Unexpected output: %s", out)
}
if run.Program() == nil {
t.Error("Run program not set")
}
var promptTokens, completionTokens, totalTokens int
for _, c := range run.calls {
promptTokens += c.Usage.PromptTokens
completionTokens += c.Usage.CompletionTokens
totalTokens += c.Usage.TotalTokens
}
if promptTokens == 0 || completionTokens == 0 || totalTokens == 0 {
t.Errorf("Usage not set: %d, %d, %d", promptTokens, completionTokens, totalTokens)
}
}
func TestEvaluateWithContext(t *testing.T) {
wd, err := os.Getwd()
if err != nil {
t.Fatalf("Error getting current working directory: %v", err)
}
tool := ToolDef{
Instructions: "What is the capital of the united states?",
Tools: []string{
wd + "/test/acorn-labs-context.gpt",
},
}
run, err := g.Evaluate(context.Background(), Options{}, tool)
if err != nil {
t.Errorf("Error executing tool: %v", err)
}
out, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
if out != "Acorn Labs" {
t.Errorf("Unexpected output: %s", out)
}
}
func TestEvaluateComplexTool(t *testing.T) {
tool := ToolDef{
JSONResponse: true,
Instructions: `
Create three short graphic artist descriptions and their muses.
These should be descriptive and explain their point of view.
Also come up with a made up name, they each should be from different
backgrounds and approach art differently.
the response should be in JSON and match the format:
{
artists: [{
name: "name"
description: "description"
}]
}
`,
}
run, err := g.Evaluate(context.Background(), Options{DisableCache: true}, tool)
if err != nil {
t.Errorf("Error executing tool: %v", err)
}
out, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
if !strings.Contains(out, "\"artists\":") {
t.Errorf("Unexpected output: %s", out)
}
}
func TestEvaluateWithToolList(t *testing.T) {
shebang := "#!/bin/bash"
if runtime.GOOS == "windows" {
shebang = "#!/usr/bin/env powershell.exe"
}
tools := []ToolDef{
{
Tools: []string{"echo"},
Instructions: "echo hello there",
},
{
Name: "echo",
Tools: []string{"sys.exec"},
Description: "Echoes the input",
Arguments: ObjectSchema("input", "The string input to echo"),
Instructions: shebang + "\necho ${input}",
},
}
run, err := g.Evaluate(context.Background(), Options{}, tools...)
if err != nil {
t.Errorf("Error executing tool: %v", err)
}
out, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
if !strings.Contains(out, "hello there") {
t.Errorf("Unexpected output: %s", out)
}
// In this case, we expect the total number of tool results to be 1
var toolResults int
for _, c := range run.calls {
toolResults += c.ToolResults
}
if toolResults != 1 {
t.Errorf("Unexpected number of tool results: %d", toolResults)
}
}
func TestEvaluateWithToolListAndSubTool(t *testing.T) {
shebang := "#!/bin/bash"
if runtime.GOOS == "windows" {
shebang = "#!/usr/bin/env powershell.exe"
}
tools := []ToolDef{
{
Tools: []string{"echo"},
Instructions: "echo 'hello there'",
},
{
Name: "other",
Tools: []string{"echo"},
Instructions: "echo 'hello somewhere else'",
},
{
Name: "echo",
Tools: []string{"sys.exec"},
Description: "Echoes the input",
Arguments: ObjectSchema("input", "The string input to echo"),
Instructions: shebang + "\n echo ${input}",
},
}
run, err := g.Evaluate(context.Background(), Options{SubTool: "other"}, tools...)
if err != nil {
t.Errorf("Error executing tool: %v", err)
}
out, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
if !strings.Contains(out, "hello somewhere else") {
t.Errorf("Unexpected output: %s", out)
}
}
func TestStreamEvaluate(t *testing.T) {
var eventContent string
tool := ToolDef{Instructions: "What is the capital of the united states?"}
run, err := g.Evaluate(context.Background(), Options{IncludeEvents: true}, tool)
if err != nil {
t.Fatalf("Error executing tool: %v", err)
}
for e := range run.Events() {
if e.Call != nil {
for _, o := range e.Call.Output {
eventContent += o.Content
}
}
}
out, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
if !strings.Contains(eventContent, "Washington") {
t.Errorf("Unexpected event output: %s", eventContent)
}
if !strings.Contains(out, "Washington") {
t.Errorf("Unexpected output: %s", out)
}
if len(run.ErrorOutput()) != 0 {
t.Errorf("Should have no stderr output: %v", run.ErrorOutput())
}
}
func TestSimpleRun(t *testing.T) {
wd, err := os.Getwd()
if err != nil {
t.Fatalf("Error getting working directory: %v", err)
}
run, err := g.Run(context.Background(), wd+"/test/catcher.gpt", Options{})
if err != nil {
t.Fatalf("Error executing file: %v", err)
}
out, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
if !strings.Contains(out, "Salinger") {
t.Errorf("Unexpected output: %s", out)
}
if len(run.ErrorOutput()) != 0 {
t.Error("Should have no stderr output")
}
// Run it a second time, ensuring the same output and that a cached response is used
run, err = g.Run(context.Background(), wd+"/test/catcher.gpt", Options{})
if err != nil {
t.Fatalf("Error executing file: %v", err)
}
secondOut, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
if secondOut != out {
t.Errorf("Unexpected output on second run: %s != %s", out, secondOut)
}
// In this case, we expect a single call and that the response is cached
for _, c := range run.calls {
if !c.ChatResponseCached {
t.Error("Chat response should be cached")
}
break
}
}
func TestStreamRun(t *testing.T) {
wd, err := os.Getwd()
if err != nil {
t.Fatalf("Error getting working directory: %v", err)
}
var eventContent string
run, err := g.Run(context.Background(), wd+"/test/catcher.gpt", Options{IncludeEvents: true})
if err != nil {
t.Fatalf("Error executing file: %v", err)
}
for e := range run.Events() {
if e.Call != nil {
for _, o := range e.Call.Output {
eventContent += o.Content
}
}
}
out, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
if !strings.Contains(eventContent, "Salinger") {
t.Errorf("Unexpected event output: %s", eventContent)
}
if !strings.Contains(out, "Salinger") {
t.Errorf("Unexpected output: %s", out)
}
if len(run.ErrorOutput()) != 0 {
t.Error("Should have no stderr output")
}
}
func TestRestartFailedRun(t *testing.T) {
shebang := "#!/bin/bash"
instructions := "%s\nexit ${EXIT_CODE}"
if runtime.GOOS == "windows" {
shebang = "#!/usr/bin/env powershell.exe"
instructions = "%s\nexit $env:EXIT_CODE"
}
instructions = fmt.Sprintf(instructions, shebang)
tools := []ToolDef{
{
Instructions: "say hello",
Tools: []string{"my-context"},
},
{
Name: "my-context",
Type: "context",
Instructions: instructions,
},
}
run, err := g.Evaluate(context.Background(), Options{GlobalOptions: GlobalOptions{Env: []string{"EXIT_CODE=1"}}, DisableCache: true}, tools...)
if err != nil {
t.Fatalf("Error executing tool: %v", err)
}
_, err = run.Text()
if err == nil {
t.Errorf("Expected error but got nil")
}
run.opts.GlobalOptions.Env = nil
run, err = run.NextChat(context.Background(), "")
if err != nil {
t.Fatalf("Error executing next run: %v", err)
}
_, err = run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
}
func TestCredentialOverride(t *testing.T) {
wd, err := os.Getwd()
if err != nil {
t.Fatalf("Error getting working directory: %v", err)
}
gptscriptFile := "credential-override.gpt"
if runtime.GOOS == "windows" {
gptscriptFile = "credential-override-windows.gpt"
}
run, err := g.Run(context.Background(), filepath.Join(wd, "test", gptscriptFile), Options{
DisableCache: true,
CredentialOverrides: []string{
"test.ts.credential_override:TEST_CRED=foo",
},
})
if err != nil {
t.Fatalf("Error executing file: %v", err)
}
out, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
if !strings.Contains(out, "foo") {
t.Errorf("Unexpected output: %s", out)
}
if len(run.ErrorOutput()) != 0 {
t.Error("Should have no stderr output")
}
}
func TestParseSimpleFile(t *testing.T) {
wd, err := os.Getwd()
if err != nil {
t.Fatalf("Error getting working directory: %v", err)
}
tools, err := g.Parse(context.Background(), wd+"/test/test.gpt")
if err != nil {
t.Errorf("Error parsing file: %v", err)
}
if len(tools) != 1 {
t.Fatalf("Unexpected number of tools: %d", len(tools))
}
if tools[0].ToolNode == nil {
t.Fatalf("No tool node found")
}
if tools[0].ToolNode.Tool.Instructions != "Respond with a hello, in a random language. Also include the language in the response." {
t.Errorf("Unexpected instructions: %s", tools[0].ToolNode.Tool.Instructions)
}
}
func TestParseEmptyFile(t *testing.T) {
wd, err := os.Getwd()
if err != nil {
t.Fatalf("Error getting working directory: %v", err)
}
tools, err := g.Parse(context.Background(), wd+"/test/empty.gpt")
if err != nil {
t.Errorf("Error parsing file: %v", err)
}
if len(tools) != 0 {
t.Fatalf("Unexpected number of tools: %d", len(tools))
}
}
func TestParseFileWithMetadata(t *testing.T) {
wd, err := os.Getwd()
if err != nil {
t.Fatalf("Error getting working directory: %v", err)
}
tools, err := g.Parse(context.Background(), wd+"/test/parse-with-metadata.gpt")
if err != nil {
t.Errorf("Error parsing file: %v", err)
}
if len(tools) != 2 {
t.Fatalf("Unexpected number of tools: %d", len(tools))
}
if tools[0].ToolNode == nil {
t.Fatalf("No tool node found")
}
if !strings.Contains(tools[0].ToolNode.Tool.Instructions, "requests.get(") {
t.Errorf("Unexpected instructions: %s", tools[0].ToolNode.Tool.Instructions)
}
if tools[0].ToolNode.Tool.MetaData["requirements.txt"] != "requests" {
t.Errorf("Unexpected metadata: %s", tools[0].ToolNode.Tool.MetaData["requirements.txt"])
}
if tools[1].TextNode == nil {
t.Fatalf("No text node found")
}
if tools[1].TextNode.Fmt != "metadata:foo:requirements.txt" {
t.Errorf("Unexpected text: %s", tools[1].TextNode.Fmt)
}
}
func TestParseTool(t *testing.T) {
tools, err := g.ParseContent(context.Background(), "echo hello")
if err != nil {
t.Errorf("Error parsing tool: %v", err)
}
if len(tools) != 1 {
t.Fatalf("Unexpected number of tools: %d", len(tools))
}
if tools[0].ToolNode == nil {
t.Fatalf("No tool node found")
}
if tools[0].ToolNode.Tool.Instructions != "echo hello" {
t.Errorf("Unexpected instructions: %s", tools[0].ToolNode.Tool.Instructions)
}
}
func TestEmptyParseTool(t *testing.T) {
tools, err := g.ParseContent(context.Background(), "")
if err != nil {
t.Errorf("Error parsing tool: %v", err)
}
if len(tools) != 0 {
t.Fatalf("Unexpected number of tools: %d", len(tools))
}
}
func TestParseToolWithTextNode(t *testing.T) {
tools, err := g.ParseContent(context.Background(), "echo hello\n---\n!markdown\nhello")
if err != nil {
t.Errorf("Error parsing tool: %v", err)
}
if len(tools) != 2 {
t.Fatalf("Unexpected number of tools: %d", len(tools))
}
if tools[0].ToolNode == nil {
t.Fatalf("No tool node found")
}
if tools[0].ToolNode.Tool.Instructions != "echo hello" {
t.Errorf("Unexpected instructions: %s", tools[0].ToolNode.Tool.Instructions)
}
if tools[1].TextNode == nil {
t.Fatalf("No text node found")
}
if strings.TrimSpace(tools[1].TextNode.Text) != "hello" {
t.Errorf("Unexpected text: %s", tools[1].TextNode.Text)
}
if tools[1].TextNode.Fmt != "markdown" {
t.Errorf("Unexpected fmt: %s", tools[1].TextNode.Fmt)
}
}
func TestFmt(t *testing.T) {
nodes := []Node{
{
ToolNode: &ToolNode{
Tool: Tool{
ToolDef: ToolDef{
Tools: []string{"echo"},
Instructions: "echo hello there",
},
},
},
},
{
ToolNode: &ToolNode{
Tool: Tool{
ToolDef: ToolDef{
Name: "echo",
Instructions: "#!/bin/bash\necho hello there",
Arguments: &openapi3.Schema{
Type: &openapi3.Types{"object"},
Properties: map[string]*openapi3.SchemaRef{
"input": {
Value: &openapi3.Schema{
Description: "The string input to echo",
Type: &openapi3.Types{"string"},
},
},
},
},
},
},
},
},
}
out, err := g.Fmt(context.Background(), nodes)
if err != nil {
t.Errorf("Error formatting nodes: %v", err)
}
if out != `Tools: echo
echo hello there
---
Name: echo
Parameter: input: The string input to echo
#!/bin/bash
echo hello there
` {
t.Errorf("Unexpected output: %s", out)
}
}
func TestFmtWithTextNode(t *testing.T) {
nodes := []Node{
{
ToolNode: &ToolNode{
Tool: Tool{
ToolDef: ToolDef{
Tools: []string{"echo"},
Instructions: "echo hello there",
},
},
},
},
{
TextNode: &TextNode{
Fmt: "markdown",
Text: "We now echo hello there\n",
},
},
{
ToolNode: &ToolNode{
Tool: Tool{
ToolDef: ToolDef{
Instructions: "#!/bin/bash\necho hello there",
Name: "echo",
Arguments: &openapi3.Schema{
Type: &openapi3.Types{"object"},
Properties: map[string]*openapi3.SchemaRef{
"input": {
Value: &openapi3.Schema{
Description: "The string input to echo",
Type: &openapi3.Types{"string"},
},
},
},
},
},
},
},
},
}
out, err := g.Fmt(context.Background(), nodes)
if err != nil {
t.Errorf("Error formatting nodes: %v", err)
}
if out != `Tools: echo
echo hello there
---
!markdown
We now echo hello there
---
Name: echo
Parameter: input: The string input to echo
#!/bin/bash
echo hello there
` {
t.Errorf("Unexpected output: %s", out)
}
}
func TestToolChat(t *testing.T) {
tool := ToolDef{
Chat: true,
Instructions: "You are a chat bot. Don't finish the conversation until I say 'bye'.",
Tools: []string{"sys.chat.finish"},
}
run, err := g.Evaluate(context.Background(), Options{DisableCache: true}, tool)
if err != nil {
t.Fatalf("Error executing tool: %v", err)
}
inputs := []string{
"List the three largest states in the United States by area.",
"What is the capital of the third one?",
"What timezone is the first one in?",
}
expectedOutputs := []string{
"California",
"Sacramento",
"Alaska Time Zone",
}
// Just wait for the chat to start up.
_, err = run.Text()
if err != nil {
t.Fatalf("Error waiting for initial output: %v", err)
}
for i, input := range inputs {
run, err = run.NextChat(context.Background(), input)
if err != nil {
t.Fatalf("Error sending next input %q: %v", input, err)
}
out, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %s", run.ErrorOutput())
t.Fatalf("Error reading output: %v", err)
}
if !strings.Contains(out, expectedOutputs[i]) {
t.Fatalf("Unexpected output: %s", out)
}
}
}
func TestFileChat(t *testing.T) {
wd, err := os.Getwd()
if err != nil {
t.Fatalf("Error getting current working directory: %v", err)
}
run, err := g.Run(context.Background(), wd+"/test/chat.gpt", Options{})
if err != nil {
t.Fatalf("Error executing tool: %v", err)
}
inputs := []string{
"List the 3 largest of the Great Lakes by volume.",
"What is the second one in the list?",
"What is the third?",
}
expectedOutputs := []string{
"Lake Superior",
"Lake Michigan",
"Lake Huron",
}
// Just wait for the chat to start up.
_, err = run.Text()
if err != nil {
t.Fatalf("Error waiting for initial output: %v", err)
}
for i, input := range inputs {
run, err = run.NextChat(context.Background(), input)
if err != nil {
t.Fatalf("Error sending next input %q: %v", input, err)
}
out, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %s", run.ErrorOutput())
t.Fatalf("Error reading output: %v", err)
}
if !strings.Contains(out, expectedOutputs[i]) {
t.Fatalf("Unexpected output: %s", out)
}
}
}
func TestToolWithGlobalTools(t *testing.T) {
var runStartSeen, callStartSeen, callFinishSeen, callProgressSeen, runFinishSeen bool
wd, err := os.Getwd()
if err != nil {
t.Fatalf("Error getting current working directory: %v", err)
}
var eventContent string
run, err := g.Run(context.Background(), wd+"/test/global-tools.gpt", Options{DisableCache: true, IncludeEvents: true, CredentialOverrides: []string{"github.com/gptscript-ai/gateway:OPENAI_API_KEY"}})
if err != nil {
t.Fatalf("Error executing tool: %v", err)
}
for e := range run.Events() {
if e.Run != nil {
if e.Run.Type == EventTypeRunStart {
runStartSeen = true
} else if e.Run.Type == EventTypeRunFinish {
runFinishSeen = true
}
} else if e.Call != nil {
if e.Call.Type == EventTypeCallStart {
callStartSeen = true
} else if e.Call.Type == EventTypeCallFinish {
callFinishSeen = true
for _, o := range e.Call.Output {
eventContent += o.Content
}
} else if e.Call.Type == EventTypeCallProgress {
callProgressSeen = true
}
}
}
out, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
if !strings.Contains(eventContent, "Hello") {
t.Errorf("Unexpected event output: %s", eventContent)
}
if !strings.Contains(out, "Hello!") {
t.Errorf("Unexpected output: %s", out)
}
if len(run.ErrorOutput()) != 0 {
t.Errorf("Should have no stderr output: %v", run.ErrorOutput())
}
if !runStartSeen || !callStartSeen || !callFinishSeen || !runFinishSeen || !callProgressSeen {
t.Errorf("Missing events: %t %t %t %t %t", runStartSeen, callStartSeen, callFinishSeen, runFinishSeen, callProgressSeen)
}
}
func TestConfirm(t *testing.T) {
var eventContent string
tools := ToolDef{
Instructions: "List all the files in the current directory. Respond with the names of the files in only the current directory.",
Tools: []string{"sys.exec"},
}
run, err := g.Evaluate(context.Background(), Options{IncludeEvents: true, Confirm: true}, tools)
if err != nil {
t.Errorf("Error executing tool: %v", err)
}
var confirmCallEvent *CallFrame
done := make(chan struct{})
go func() {
defer close(done)
for e := range run.Events() {
if e.Call != nil {
for _, o := range e.Call.Output {
eventContent += o.Content
}
if e.Call.Type == EventTypeCallConfirm {
confirmCallEvent = e.Call
if !strings.Contains(confirmCallEvent.Input, "\"ls") && !strings.Contains(confirmCallEvent.Input, "\"dir") {
t.Errorf("unexpected confirm input: %s", confirmCallEvent.Input)
}
// Confirm the call
if err = g.Confirm(context.Background(), AuthResponse{
ID: confirmCallEvent.ID,
Accept: true,
}); err != nil {
t.Errorf("Error confirming: %v", err)
}
}
}
}
}()
out, err := run.Text()
if err != nil {
t.Errorf("Error reading output: %v", err)
}
// Wait for events processing to finish
<-done