From 7f9ead8fa8968d5b6822d6e88c1bc0bab55f47db Mon Sep 17 00:00:00 2001 From: Donnie Adams Date: Sat, 27 Jul 2024 11:48:22 -0400 Subject: [PATCH] feat: add force sequential option Signed-off-by: Donnie Adams --- gptscript/opts.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gptscript/opts.py b/gptscript/opts.py index dc3e22b..061a66b 100644 --- a/gptscript/opts.py +++ b/gptscript/opts.py @@ -33,6 +33,7 @@ def __init__(self, credentialOverrides: list[str] = None, location: str = "", env: list[str] = None, + forceSequential: bool = False, apiKey: str = "", baseURL: str = "", defaultModel: str = "" @@ -48,3 +49,4 @@ def __init__(self, self.credentialOverrides = credentialOverrides self.location = location self.env = env + self.forceSequential = forceSequential