We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0c7bea6 + ae71565 commit 4faf337Copy full SHA for 4faf337
README.md
@@ -105,7 +105,7 @@ import (
105
106
func execFile(ctx context.Context) (string, error) {
107
opts := gogptscript.Opts{
108
- Cache: &[]bool{false}[0],
+ DisableCache: &[]bool{true}[0],
109
}
110
111
return gogptscript.ExecFile(ctx, "./hello.gpt", "--input World", opts)
@@ -179,7 +179,7 @@ import (
179
180
func streamExecTool(ctx context.Context) error {
181
182
183
184
185
stdOut, stdErr, wait := gogptscript.StreamExecFile(ctx, "./hello.gpt", "--input world", opts)
@@ -205,7 +205,7 @@ import (
205
206
207
208
209
210
211
stdOut, stdErr, events, wait := gogptscript.StreamExecFileWithEvents(ctx, "./hello.gpt", "--input world", opts)
0 commit comments