diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2023-12-07 14:30:55 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2023-12-07 14:30:55 +0100 |
commit | bb34642fcb60c64f152bbc3210ccb85d32f1c947 (patch) | |
tree | c7d32de163cf90c004f3a217770ce370ea6b17b5 /g4f/Provider/retry_provider.py | |
parent | Add websearch to gui (#1314) (diff) | |
download | gpt4free-bb34642fcb60c64f152bbc3210ccb85d32f1c947.tar gpt4free-bb34642fcb60c64f152bbc3210ccb85d32f1c947.tar.gz gpt4free-bb34642fcb60c64f152bbc3210ccb85d32f1c947.tar.bz2 gpt4free-bb34642fcb60c64f152bbc3210ccb85d32f1c947.tar.lz gpt4free-bb34642fcb60c64f152bbc3210ccb85d32f1c947.tar.xz gpt4free-bb34642fcb60c64f152bbc3210ccb85d32f1c947.tar.zst gpt4free-bb34642fcb60c64f152bbc3210ccb85d32f1c947.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/retry_provider.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g4f/Provider/retry_provider.py b/g4f/Provider/retry_provider.py index 5979e15b..6fdefe0f 100644 --- a/g4f/Provider/retry_provider.py +++ b/g4f/Provider/retry_provider.py @@ -10,7 +10,6 @@ from .. import debug class RetryProvider(AsyncProvider): __name__: str = "RetryProvider" - working: bool = True supports_stream: bool = True def __init__( @@ -20,6 +19,7 @@ class RetryProvider(AsyncProvider): ) -> None: self.providers: List[Type[BaseProvider]] = providers self.shuffle: bool = shuffle + self.working = True def create_completion( self, |