gpt4free/g4f/Provider/retry_provider.py

85 lines
2.6 KiB
Python
Raw Normal View History

2023-09-21 14:10:59 -04:00
from __future__ import annotations
import random
2023-10-07 04:17:43 -04:00
from typing import List, Type, Dict
2023-10-10 03:49:29 -04:00
from ..typing import CreateResult, Messages
2023-09-21 14:10:59 -04:00
from .base_provider import BaseProvider, AsyncProvider
from ..debug import logging
2023-09-21 14:10:59 -04:00
class RetryProvider(AsyncProvider):
2023-10-07 04:17:43 -04:00
__name__: str = "RetryProvider"
working: bool = True
supports_stream: bool = True
2023-09-21 14:10:59 -04:00
def __init__(
self,
2023-10-07 04:17:43 -04:00
providers: List[Type[BaseProvider]],
2023-09-21 14:10:59 -04:00
shuffle: bool = True
) -> None:
2023-10-07 04:17:43 -04:00
self.providers: List[Type[BaseProvider]] = providers
self.shuffle: bool = shuffle
2023-09-21 14:10:59 -04:00
def create_completion(
self,
model: str,
2023-10-10 03:49:29 -04:00
messages: Messages,
2023-09-21 14:10:59 -04:00
stream: bool = False,
**kwargs
) -> CreateResult:
if stream:
providers = [provider for provider in self.providers if provider.supports_stream]
else:
providers = self.providers
if self.shuffle:
random.shuffle(providers)
2023-10-07 04:17:43 -04:00
self.exceptions: Dict[str, Exception] = {}
started: bool = False
2023-09-21 14:10:59 -04:00
for provider in providers:
try:
if logging:
print(f"Using {provider.__name__} provider")
2023-09-21 14:10:59 -04:00
for token in provider.create_completion(model, messages, stream, **kwargs):
yield token
started = True
if started:
return
except Exception as e:
self.exceptions[provider.__name__] = e
if logging:
print(f"{provider.__name__}: {e.__class__.__name__}: {e}")
2023-09-21 14:10:59 -04:00
if started:
2023-10-10 03:49:29 -04:00
raise e
2023-09-21 14:10:59 -04:00
self.raise_exceptions()
async def create_async(
self,
model: str,
2023-10-10 03:49:29 -04:00
messages: Messages,
2023-09-21 14:10:59 -04:00
**kwargs
) -> str:
2023-10-10 03:49:29 -04:00
providers = self.providers
2023-09-21 14:10:59 -04:00
if self.shuffle:
random.shuffle(providers)
2023-10-07 04:17:43 -04:00
self.exceptions: Dict[str, Exception] = {}
2023-09-21 14:10:59 -04:00
for provider in providers:
try:
return await provider.create_async(model, messages, **kwargs)
except Exception as e:
self.exceptions[provider.__name__] = e
if logging:
print(f"{provider.__name__}: {e.__class__.__name__}: {e}")
2023-09-21 14:10:59 -04:00
self.raise_exceptions()
2023-10-07 04:17:43 -04:00
def raise_exceptions(self) -> None:
2023-09-21 14:10:59 -04:00
if self.exceptions:
raise RuntimeError("\n".join(["All providers failed:"] + [
f"{p}: {self.exceptions[p].__class__.__name__}: {self.exceptions[p]}" for p in self.exceptions
]))
raise RuntimeError("No provider found")