2023-09-03 08:26:26 +00:00
|
|
|
from __future__ import annotations
|
2024-01-26 06:54:13 +00:00
|
|
|
|
2023-11-20 19:00:56 +00:00
|
|
|
import sys
|
2024-01-01 16:48:57 +00:00
|
|
|
import asyncio
|
2024-01-14 06:45:41 +00:00
|
|
|
from asyncio import AbstractEventLoop
|
2023-09-25 23:02:02 +00:00
|
|
|
from concurrent.futures import ThreadPoolExecutor
|
2024-01-14 06:45:41 +00:00
|
|
|
from abc import abstractmethod
|
|
|
|
from inspect import signature, Parameter
|
2024-01-21 01:20:23 +00:00
|
|
|
from .helper import get_cookies, format_prompt
|
|
|
|
from ..typing import CreateResult, AsyncResult, Messages, Union
|
2024-01-14 06:45:41 +00:00
|
|
|
from ..base_provider import BaseProvider
|
2024-01-23 18:44:48 +00:00
|
|
|
from ..errors import NestAsyncioError, ModelNotSupportedError
|
2024-01-26 11:49:52 +00:00
|
|
|
from .. import debug
|
2023-07-28 10:07:17 +00:00
|
|
|
|
2023-11-20 19:00:56 +00:00
|
|
|
if sys.version_info < (3, 10):
|
|
|
|
NoneType = type(None)
|
|
|
|
else:
|
|
|
|
from types import NoneType
|
2023-07-28 10:07:17 +00:00
|
|
|
|
2024-01-14 06:45:41 +00:00
|
|
|
# Set Windows event loop policy for better compatibility with asyncio and curl_cffi
|
2024-01-01 01:09:06 +00:00
|
|
|
if sys.platform == 'win32':
|
2024-01-14 06:45:41 +00:00
|
|
|
if isinstance(asyncio.get_event_loop_policy(), asyncio.WindowsProactorEventLoopPolicy):
|
2024-01-01 01:09:06 +00:00
|
|
|
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
|
|
|
|
|
2024-01-21 01:20:23 +00:00
|
|
|
def get_running_loop() -> Union[AbstractEventLoop, None]:
|
|
|
|
try:
|
|
|
|
loop = asyncio.get_running_loop()
|
|
|
|
if not hasattr(loop.__class__, "_nest_patched"):
|
|
|
|
raise NestAsyncioError(
|
|
|
|
'Use "create_async" instead of "create" function in a running event loop. Or use "nest_asyncio" package.'
|
|
|
|
)
|
|
|
|
return loop
|
|
|
|
except RuntimeError:
|
|
|
|
pass
|
|
|
|
|
2024-01-01 16:48:57 +00:00
|
|
|
class AbstractProvider(BaseProvider):
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Abstract class for providing asynchronous functionality to derived classes.
|
|
|
|
"""
|
|
|
|
|
2023-09-25 23:02:02 +00:00
|
|
|
@classmethod
|
|
|
|
async def create_async(
|
|
|
|
cls,
|
|
|
|
model: str,
|
2023-10-10 07:49:29 +00:00
|
|
|
messages: Messages,
|
2023-09-25 23:02:02 +00:00
|
|
|
*,
|
|
|
|
loop: AbstractEventLoop = None,
|
|
|
|
executor: ThreadPoolExecutor = None,
|
|
|
|
**kwargs
|
|
|
|
) -> str:
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Asynchronously creates a result based on the given model and messages.
|
2024-01-14 14:04:37 +00:00
|
|
|
|
|
|
|
Args:
|
|
|
|
cls (type): The class on which this method is called.
|
|
|
|
model (str): The model to use for creation.
|
|
|
|
messages (Messages): The messages to process.
|
|
|
|
loop (AbstractEventLoop, optional): The event loop to use. Defaults to None.
|
|
|
|
executor (ThreadPoolExecutor, optional): The executor for running async tasks. Defaults to None.
|
|
|
|
**kwargs: Additional keyword arguments.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: The created result as a string.
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
2024-01-20 17:23:54 +00:00
|
|
|
loop = loop or asyncio.get_running_loop()
|
2023-10-07 08:17:43 +00:00
|
|
|
|
|
|
|
def create_func() -> str:
|
2024-01-14 06:45:41 +00:00
|
|
|
return "".join(cls.create_completion(model, messages, False, **kwargs))
|
2023-10-07 08:17:43 +00:00
|
|
|
|
2024-01-01 16:48:57 +00:00
|
|
|
return await asyncio.wait_for(
|
2024-01-14 06:45:41 +00:00
|
|
|
loop.run_in_executor(executor, create_func),
|
2024-01-21 01:20:23 +00:00
|
|
|
timeout=kwargs.get("timeout")
|
2023-09-25 23:02:02 +00:00
|
|
|
)
|
2023-11-20 12:59:14 +00:00
|
|
|
|
2023-07-28 10:07:17 +00:00
|
|
|
@classmethod
|
|
|
|
@property
|
2023-10-07 08:17:43 +00:00
|
|
|
def params(cls) -> str:
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Returns the parameters supported by the provider.
|
2024-01-14 14:04:37 +00:00
|
|
|
|
|
|
|
Args:
|
|
|
|
cls (type): The class on which this property is called.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: A string listing the supported parameters.
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
sig = signature(
|
|
|
|
cls.create_async_generator if issubclass(cls, AsyncGeneratorProvider) else
|
|
|
|
cls.create_async if issubclass(cls, AsyncProvider) else
|
|
|
|
cls.create_completion
|
|
|
|
)
|
2023-11-20 12:59:14 +00:00
|
|
|
|
|
|
|
def get_type_name(annotation: type) -> str:
|
2024-01-14 06:45:41 +00:00
|
|
|
return annotation.__name__ if hasattr(annotation, "__name__") else str(annotation)
|
|
|
|
|
2023-11-24 14:16:00 +00:00
|
|
|
args = ""
|
2023-11-20 12:59:14 +00:00
|
|
|
for name, param in sig.parameters.items():
|
2024-01-14 06:45:41 +00:00
|
|
|
if name in ("self", "kwargs") or (name == "stream" and not cls.supports_stream):
|
2023-11-20 12:59:14 +00:00
|
|
|
continue
|
2024-01-14 06:45:41 +00:00
|
|
|
args += f"\n {name}"
|
|
|
|
args += f": {get_type_name(param.annotation)}" if param.annotation is not Parameter.empty else ""
|
|
|
|
args += f' = "{param.default}"' if param.default == "" else f" = {param.default}" if param.default is not Parameter.empty else ""
|
2023-11-20 12:59:14 +00:00
|
|
|
|
|
|
|
return f"g4f.Provider.{cls.__name__} supports: ({args}\n)"
|
2023-08-27 23:43:45 +00:00
|
|
|
|
|
|
|
|
2024-01-01 16:48:57 +00:00
|
|
|
class AsyncProvider(AbstractProvider):
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Provides asynchronous functionality for creating completions.
|
|
|
|
"""
|
|
|
|
|
2023-08-25 04:41:32 +00:00
|
|
|
@classmethod
|
|
|
|
def create_completion(
|
|
|
|
cls,
|
|
|
|
model: str,
|
2023-10-10 07:49:29 +00:00
|
|
|
messages: Messages,
|
2023-09-18 05:15:43 +00:00
|
|
|
stream: bool = False,
|
|
|
|
**kwargs
|
|
|
|
) -> CreateResult:
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Creates a completion result synchronously.
|
2024-01-14 14:04:37 +00:00
|
|
|
|
|
|
|
Args:
|
|
|
|
cls (type): The class on which this method is called.
|
|
|
|
model (str): The model to use for creation.
|
|
|
|
messages (Messages): The messages to process.
|
|
|
|
stream (bool): Indicates whether to stream the results. Defaults to False.
|
|
|
|
loop (AbstractEventLoop, optional): The event loop to use. Defaults to None.
|
|
|
|
**kwargs: Additional keyword arguments.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
CreateResult: The result of the completion creation.
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
2024-01-21 01:20:23 +00:00
|
|
|
get_running_loop()
|
2024-01-20 17:23:54 +00:00
|
|
|
yield asyncio.run(cls.create_async(model, messages, **kwargs))
|
2023-08-25 04:41:32 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
@abstractmethod
|
|
|
|
async def create_async(
|
|
|
|
model: str,
|
2023-10-10 07:49:29 +00:00
|
|
|
messages: Messages,
|
2023-09-20 15:31:25 +00:00
|
|
|
**kwargs
|
|
|
|
) -> str:
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Abstract method for creating asynchronous results.
|
2024-01-14 14:04:37 +00:00
|
|
|
|
|
|
|
Args:
|
|
|
|
model (str): The model to use for creation.
|
|
|
|
messages (Messages): The messages to process.
|
|
|
|
**kwargs: Additional keyword arguments.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
NotImplementedError: If this method is not overridden in derived classes.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: The created result as a string.
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
2023-08-25 04:41:32 +00:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
|
|
|
|
class AsyncGeneratorProvider(AsyncProvider):
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Provides asynchronous generator functionality for streaming results.
|
|
|
|
"""
|
2023-09-05 15:27:24 +00:00
|
|
|
supports_stream = True
|
|
|
|
|
2023-08-25 04:41:32 +00:00
|
|
|
@classmethod
|
|
|
|
def create_completion(
|
|
|
|
cls,
|
|
|
|
model: str,
|
2023-10-10 07:49:29 +00:00
|
|
|
messages: Messages,
|
2023-08-27 23:43:45 +00:00
|
|
|
stream: bool = True,
|
|
|
|
**kwargs
|
|
|
|
) -> CreateResult:
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Creates a streaming completion result synchronously.
|
2024-01-14 14:04:37 +00:00
|
|
|
|
|
|
|
Args:
|
|
|
|
cls (type): The class on which this method is called.
|
|
|
|
model (str): The model to use for creation.
|
|
|
|
messages (Messages): The messages to process.
|
|
|
|
stream (bool): Indicates whether to stream the results. Defaults to True.
|
|
|
|
loop (AbstractEventLoop, optional): The event loop to use. Defaults to None.
|
|
|
|
**kwargs: Additional keyword arguments.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
CreateResult: The result of the streaming completion creation.
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
2024-01-21 01:20:23 +00:00
|
|
|
loop = get_running_loop()
|
|
|
|
new_loop = False
|
|
|
|
if not loop:
|
2024-01-20 17:23:54 +00:00
|
|
|
loop = asyncio.new_event_loop()
|
|
|
|
asyncio.set_event_loop(loop)
|
2024-01-21 01:20:23 +00:00
|
|
|
new_loop = True
|
2024-01-20 17:23:54 +00:00
|
|
|
|
2024-01-14 06:45:41 +00:00
|
|
|
generator = cls.create_async_generator(model, messages, stream=stream, **kwargs)
|
2023-10-07 08:17:43 +00:00
|
|
|
gen = generator.__aiter__()
|
2024-01-14 06:45:41 +00:00
|
|
|
|
2023-09-26 08:03:37 +00:00
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
yield loop.run_until_complete(gen.__anext__())
|
|
|
|
except StopAsyncIteration:
|
|
|
|
break
|
2023-09-18 05:15:43 +00:00
|
|
|
|
2024-01-21 01:20:23 +00:00
|
|
|
if new_loop:
|
|
|
|
loop.close()
|
|
|
|
asyncio.set_event_loop(None)
|
|
|
|
|
2023-08-25 04:41:32 +00:00
|
|
|
@classmethod
|
|
|
|
async def create_async(
|
|
|
|
cls,
|
|
|
|
model: str,
|
2023-10-10 07:49:29 +00:00
|
|
|
messages: Messages,
|
2023-08-27 23:43:45 +00:00
|
|
|
**kwargs
|
|
|
|
) -> str:
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Asynchronously creates a result from a generator.
|
2024-01-14 14:04:37 +00:00
|
|
|
|
|
|
|
Args:
|
|
|
|
cls (type): The class on which this method is called.
|
|
|
|
model (str): The model to use for creation.
|
|
|
|
messages (Messages): The messages to process.
|
|
|
|
**kwargs: Additional keyword arguments.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: The created result as a string.
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
2023-09-20 15:31:25 +00:00
|
|
|
return "".join([
|
2024-01-14 06:45:41 +00:00
|
|
|
chunk async for chunk in cls.create_async_generator(model, messages, stream=False, **kwargs)
|
|
|
|
if not isinstance(chunk, Exception)
|
2023-09-20 15:31:25 +00:00
|
|
|
])
|
2023-10-07 08:17:43 +00:00
|
|
|
|
2023-08-25 04:41:32 +00:00
|
|
|
@staticmethod
|
|
|
|
@abstractmethod
|
2024-01-14 06:45:41 +00:00
|
|
|
async def create_async_generator(
|
2023-09-18 05:15:43 +00:00
|
|
|
model: str,
|
2023-10-10 07:49:29 +00:00
|
|
|
messages: Messages,
|
2024-01-01 16:48:57 +00:00
|
|
|
stream: bool = True,
|
2023-09-18 05:15:43 +00:00
|
|
|
**kwargs
|
2023-10-10 07:49:29 +00:00
|
|
|
) -> AsyncResult:
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Abstract method for creating an asynchronous generator.
|
2024-01-14 14:04:37 +00:00
|
|
|
|
|
|
|
Args:
|
|
|
|
model (str): The model to use for creation.
|
|
|
|
messages (Messages): The messages to process.
|
|
|
|
stream (bool): Indicates whether to stream the results. Defaults to True.
|
|
|
|
**kwargs: Additional keyword arguments.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
NotImplementedError: If this method is not overridden in derived classes.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
AsyncResult: An asynchronous generator yielding results.
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
2024-01-23 18:44:48 +00:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
class ProviderModelMixin:
|
|
|
|
default_model: str
|
|
|
|
models: list[str] = []
|
|
|
|
model_aliases: dict[str, str] = {}
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_models(cls) -> list[str]:
|
|
|
|
return cls.models
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_model(cls, model: str) -> str:
|
|
|
|
if not model:
|
2024-01-26 11:49:52 +00:00
|
|
|
model = cls.default_model
|
2024-01-23 18:44:48 +00:00
|
|
|
elif model in cls.model_aliases:
|
2024-01-26 11:49:52 +00:00
|
|
|
model = cls.model_aliases[model]
|
2024-01-23 18:44:48 +00:00
|
|
|
elif model not in cls.get_models():
|
|
|
|
raise ModelNotSupportedError(f"Model is not supported: {model} in: {cls.__name__}")
|
2024-01-26 11:49:52 +00:00
|
|
|
debug.last_model = model
|
2024-01-23 18:44:48 +00:00
|
|
|
return model
|