diff options
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/GptGo.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g4f/Provider/GptGo.py b/g4f/Provider/GptGo.py index 7db8fb0d..19484291 100644 --- a/g4f/Provider/GptGo.py +++ b/g4f/Provider/GptGo.py @@ -18,6 +18,7 @@ class GptGo(AsyncGeneratorProvider): model: str, messages: list[dict[str, str]], proxy: str = None, + timeout: int = 30, **kwargs ) -> AsyncGenerator: headers = { @@ -31,7 +32,7 @@ class GptGo(AsyncGeneratorProvider): "Sec-Fetch-Site" : "same-origin", } async with ClientSession( - headers=headers + headers=headers, timeout=timeout ) as session: async with session.get( "https://gptgo.ai/action_get_token.php", |