diff --git a/gptscript/opts.py b/gptscript/opts.py index 932af4c..dc3e22b 100644 --- a/gptscript/opts.py +++ b/gptscript/opts.py @@ -31,6 +31,7 @@ def __init__(self, confirm: bool = False, prompt: bool = False, credentialOverrides: list[str] = None, + location: str = "", env: list[str] = None, apiKey: str = "", baseURL: str = "", @@ -45,4 +46,5 @@ def __init__(self, self.confirm = confirm self.prompt = prompt self.credentialOverrides = credentialOverrides + self.location = location self.env = env