2023-09-21 18:10:59 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-10-17 07:29:12 +00:00
|
|
|
import asyncio
|
2023-09-21 18:10:59 +00:00
|
|
|
import random
|
2023-10-10 07:49:29 +00:00
|
|
|
from ..typing import CreateResult, Messages
|
2024-01-01 16:48:57 +00:00
|
|
|
from ..base_provider import BaseRetryProvider
|
2023-10-22 21:53:18 +00:00
|
|
|
from .. import debug
|
2023-12-10 23:56:06 +00:00
|
|
|
from ..errors import RetryProviderError, RetryNoProviderError
|
2023-09-21 18:10:59 +00:00
|
|
|
|
2024-01-01 16:48:57 +00:00
|
|
|
class RetryProvider(BaseRetryProvider):
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
A provider class to handle retries for creating completions with different providers.
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
providers (list): A list of provider instances.
|
|
|
|
shuffle (bool): A flag indicating whether to shuffle providers before use.
|
|
|
|
exceptions (dict): A dictionary to store exceptions encountered during retries.
|
|
|
|
last_provider (BaseProvider): The last provider that was used.
|
|
|
|
"""
|
|
|
|
|
2023-09-21 18:10:59 +00:00
|
|
|
def create_completion(
|
|
|
|
self,
|
|
|
|
model: str,
|
2023-10-10 07:49:29 +00:00
|
|
|
messages: Messages,
|
2023-09-21 18:10:59 +00:00
|
|
|
stream: bool = False,
|
|
|
|
**kwargs
|
|
|
|
) -> CreateResult:
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Create a completion using available providers, with an option to stream the response.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
model (str): The model to be used for completion.
|
|
|
|
messages (Messages): The messages to be used for generating completion.
|
|
|
|
stream (bool, optional): Flag to indicate if the response should be streamed. Defaults to False.
|
|
|
|
|
|
|
|
Yields:
|
|
|
|
CreateResult: Tokens or results from the completion.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
Exception: Any exception encountered during the completion process.
|
|
|
|
"""
|
|
|
|
providers = [p for p in self.providers if stream and p.supports_stream] if stream else self.providers
|
2023-09-21 18:10:59 +00:00
|
|
|
if self.shuffle:
|
|
|
|
random.shuffle(providers)
|
|
|
|
|
2024-01-01 16:48:57 +00:00
|
|
|
self.exceptions = {}
|
2023-10-07 08:17:43 +00:00
|
|
|
started: bool = False
|
2023-09-21 18:10:59 +00:00
|
|
|
for provider in providers:
|
2024-01-01 16:48:57 +00:00
|
|
|
self.last_provider = provider
|
2023-09-21 18:10:59 +00:00
|
|
|
try:
|
2023-10-22 21:53:18 +00:00
|
|
|
if debug.logging:
|
2023-10-05 03:13:37 +00:00
|
|
|
print(f"Using {provider.__name__} provider")
|
2023-09-21 18:10:59 +00: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
|
2023-10-22 21:53:18 +00:00
|
|
|
if debug.logging:
|
2023-10-05 03:13:37 +00:00
|
|
|
print(f"{provider.__name__}: {e.__class__.__name__}: {e}")
|
2023-09-21 18:10:59 +00:00
|
|
|
if started:
|
2023-10-10 07:49:29 +00:00
|
|
|
raise e
|
2023-09-21 18:10:59 +00:00
|
|
|
|
|
|
|
self.raise_exceptions()
|
|
|
|
|
|
|
|
async def create_async(
|
|
|
|
self,
|
|
|
|
model: str,
|
2023-10-10 07:49:29 +00:00
|
|
|
messages: Messages,
|
2023-09-21 18:10:59 +00:00
|
|
|
**kwargs
|
|
|
|
) -> str:
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Asynchronously create a completion using available providers.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
model (str): The model to be used for completion.
|
|
|
|
messages (Messages): The messages to be used for generating completion.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: The result of the asynchronous completion.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
Exception: Any exception encountered during the asynchronous completion process.
|
|
|
|
"""
|
2023-10-10 07:49:29 +00:00
|
|
|
providers = self.providers
|
2023-09-21 18:10:59 +00:00
|
|
|
if self.shuffle:
|
|
|
|
random.shuffle(providers)
|
2024-01-14 06:45:41 +00:00
|
|
|
|
2024-01-01 16:48:57 +00:00
|
|
|
self.exceptions = {}
|
2023-09-21 18:10:59 +00:00
|
|
|
for provider in providers:
|
2024-01-01 16:48:57 +00:00
|
|
|
self.last_provider = provider
|
2023-09-21 18:10:59 +00:00
|
|
|
try:
|
2023-10-22 12:22:33 +00:00
|
|
|
return await asyncio.wait_for(
|
|
|
|
provider.create_async(model, messages, **kwargs),
|
|
|
|
timeout=kwargs.get("timeout", 60)
|
|
|
|
)
|
2023-09-21 18:10:59 +00:00
|
|
|
except Exception as e:
|
|
|
|
self.exceptions[provider.__name__] = e
|
2023-10-22 21:53:18 +00:00
|
|
|
if debug.logging:
|
2023-10-05 03:13:37 +00:00
|
|
|
print(f"{provider.__name__}: {e.__class__.__name__}: {e}")
|
2024-01-14 06:45:41 +00:00
|
|
|
|
2023-09-21 18:10:59 +00:00
|
|
|
self.raise_exceptions()
|
2024-01-14 06:45:41 +00:00
|
|
|
|
2023-10-07 08:17:43 +00:00
|
|
|
def raise_exceptions(self) -> None:
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Raise a combined exception if any occurred during retries.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
RetryProviderError: If any provider encountered an exception.
|
|
|
|
RetryNoProviderError: If no provider is found.
|
|
|
|
"""
|
2023-09-21 18:10:59 +00:00
|
|
|
if self.exceptions:
|
2023-12-10 23:56:06 +00:00
|
|
|
raise RetryProviderError("RetryProvider failed:\n" + "\n".join([
|
|
|
|
f"{p}: {exception.__class__.__name__}: {exception}" for p, exception in self.exceptions.items()
|
2023-09-21 18:10:59 +00:00
|
|
|
]))
|
2024-01-14 06:45:41 +00:00
|
|
|
|
2023-12-10 23:56:06 +00:00
|
|
|
raise RetryNoProviderError("No provider found")
|