Skip to content

Commit 472cafb

Browse files
committed
chore: stop passing GPTSCRIPT_ env vars to children
Signed-off-by: Donnie Adams <[email protected]>
1 parent d8777f9 commit 472cafb

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

src/gptscript.ts

-19
Original file line numberDiff line numberDiff line change
@@ -139,17 +139,6 @@ export class GPTScript {
139139
if (!this.opts.URL) {
140140
this.opts.URL = GPTScript.serverURL
141141
}
142-
143-
if (!this.opts.Env) {
144-
this.opts.Env = []
145-
}
146-
if (this.opts.URL) {
147-
this.opts.Env.push(`GPTSCRIPT_URL=${this.opts.URL}`)
148-
}
149-
150-
if (this.opts.Token) {
151-
this.opts.Env.push(`GPTSCRIPT_TOKEN=${this.opts.Token}`)
152-
}
153142
}
154143
}
155144

@@ -411,14 +400,6 @@ export class GPTScript {
411400
try {
412401
await fetch(`${GPTScript.serverURL}/healthz`)
413402
this.opts.URL = GPTScript.serverURL
414-
if (!this.opts.Env) {
415-
this.opts.Env = []
416-
}
417-
this.opts.Env.push(`GPTSCRIPT_URL=${this.opts.URL}`)
418-
if (this.opts.Token) {
419-
this.opts.Env.push(`GPTSCRIPT_TOKEN=${this.opts.Token}`)
420-
}
421-
422403
return
423404
} catch {
424405
if (count === 0) {

0 commit comments

Comments
 (0)