We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cda71bb + 7001607 commit 20d868bCopy full SHA for 20d868b
opts.go
@@ -39,4 +39,5 @@ type Options struct {
39
Prompt bool `json:"prompt"`
40
CredentialOverrides []string `json:"credentialOverrides"`
41
Location string `json:"location"`
42
+ ForceSequential bool `json:"forceSequential"`
43
}
run.go
@@ -60,7 +60,7 @@ func (r *Run) State() RunState {
60
// Err returns the error that caused the gptscript to fail, if any.
61
func (r *Run) Err() error {
62
if r.err != nil {
63
- return fmt.Errorf("run encounterd an error: %w with error output: %s", r.err, r.errput)
+ return fmt.Errorf("run encountered an error: %w with error output: %s", r.err, r.errput)
64
65
return nil
66
0 commit comments