2023-09-03 08:26:26 +00:00
|
|
|
from __future__ import annotations
|
2023-07-28 10:07:17 +00:00
|
|
|
|
2023-09-26 08:03:37 +00:00
|
|
|
from asyncio import AbstractEventLoop
|
2023-09-25 23:02:02 +00:00
|
|
|
from concurrent.futures import ThreadPoolExecutor
|
2023-09-03 08:26:26 +00:00
|
|
|
from abc import ABC, abstractmethod
|
2023-07-28 10:07:17 +00:00
|
|
|
|
2023-09-26 08:03:37 +00:00
|
|
|
from .helper import get_event_loop, get_cookies, format_prompt
|
2023-09-23 09:42:30 +00:00
|
|
|
from ..typing import AsyncGenerator, CreateResult
|
2023-08-27 23:43:45 +00:00
|
|
|
|
2023-07-28 10:07:17 +00:00
|
|
|
|
|
|
|
class BaseProvider(ABC):
|
|
|
|
url: str
|
2023-08-27 15:37:44 +00:00
|
|
|
working = False
|
|
|
|
needs_auth = False
|
|
|
|
supports_stream = False
|
2023-07-28 10:07:17 +00:00
|
|
|
supports_gpt_35_turbo = False
|
2023-08-27 15:37:44 +00:00
|
|
|
supports_gpt_4 = False
|
2023-07-28 10:07:17 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
@abstractmethod
|
|
|
|
def create_completion(
|
|
|
|
model: str,
|
|
|
|
messages: list[dict[str, str]],
|
2023-09-20 21:06:52 +00:00
|
|
|
stream: bool,
|
|
|
|
**kwargs
|
|
|
|
) -> CreateResult:
|
2023-07-28 10:07:17 +00:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
2023-09-25 23:02:02 +00:00
|
|
|
@classmethod
|
|
|
|
async def create_async(
|
|
|
|
cls,
|
|
|
|
model: str,
|
|
|
|
messages: list[dict[str, str]],
|
|
|
|
*,
|
|
|
|
loop: AbstractEventLoop = None,
|
|
|
|
executor: ThreadPoolExecutor = None,
|
|
|
|
**kwargs
|
|
|
|
) -> str:
|
|
|
|
if not loop:
|
2023-09-26 08:03:37 +00:00
|
|
|
loop = get_event_loop()
|
|
|
|
def create_func():
|
|
|
|
return "".join(cls.create_completion(
|
|
|
|
model,
|
|
|
|
messages,
|
|
|
|
False,
|
|
|
|
**kwargs
|
|
|
|
))
|
|
|
|
return await loop.run_in_executor(
|
2023-09-25 23:02:02 +00:00
|
|
|
executor,
|
2023-09-26 08:03:37 +00:00
|
|
|
create_func
|
2023-09-25 23:02:02 +00:00
|
|
|
)
|
2023-09-20 12:52:50 +00:00
|
|
|
|
2023-07-28 10:07:17 +00:00
|
|
|
@classmethod
|
|
|
|
@property
|
|
|
|
def params(cls):
|
|
|
|
params = [
|
|
|
|
("model", "str"),
|
|
|
|
("messages", "list[dict[str, str]]"),
|
|
|
|
("stream", "bool"),
|
|
|
|
]
|
|
|
|
param = ", ".join([": ".join(p) for p in params])
|
2023-09-17 21:23:54 +00:00
|
|
|
return f"g4f.provider.{cls.__name__} supports: ({param})"
|
2023-08-27 23:43:45 +00:00
|
|
|
|
|
|
|
|
2023-08-25 04:41:32 +00:00
|
|
|
class AsyncProvider(BaseProvider):
|
|
|
|
@classmethod
|
|
|
|
def create_completion(
|
|
|
|
cls,
|
|
|
|
model: str,
|
|
|
|
messages: list[dict[str, str]],
|
2023-09-18 05:15:43 +00:00
|
|
|
stream: bool = False,
|
|
|
|
**kwargs
|
|
|
|
) -> CreateResult:
|
2023-09-26 08:03:37 +00:00
|
|
|
loop = get_event_loop()
|
|
|
|
coro = cls.create_async(model, messages, **kwargs)
|
|
|
|
yield loop.run_until_complete(coro)
|
2023-08-25 04:41:32 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
@abstractmethod
|
|
|
|
async def create_async(
|
|
|
|
model: str,
|
2023-09-20 15:31:25 +00:00
|
|
|
messages: list[dict[str, str]],
|
|
|
|
**kwargs
|
|
|
|
) -> str:
|
2023-08-25 04:41:32 +00:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
|
|
|
|
class AsyncGeneratorProvider(AsyncProvider):
|
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,
|
|
|
|
messages: list[dict[str, str]],
|
2023-08-27 23:43:45 +00:00
|
|
|
stream: bool = True,
|
|
|
|
**kwargs
|
|
|
|
) -> CreateResult:
|
2023-09-26 08:03:37 +00:00
|
|
|
loop = get_event_loop()
|
|
|
|
generator = cls.create_async_generator(
|
|
|
|
model,
|
|
|
|
messages,
|
|
|
|
stream=stream,
|
|
|
|
**kwargs
|
|
|
|
)
|
|
|
|
gen = generator.__aiter__()
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
yield loop.run_until_complete(gen.__anext__())
|
|
|
|
except StopAsyncIteration:
|
|
|
|
break
|
2023-09-18 05:15:43 +00:00
|
|
|
|
2023-08-25 04:41:32 +00:00
|
|
|
@classmethod
|
|
|
|
async def create_async(
|
|
|
|
cls,
|
|
|
|
model: str,
|
2023-08-27 23:43:45 +00:00
|
|
|
messages: list[dict[str, str]],
|
|
|
|
**kwargs
|
|
|
|
) -> str:
|
2023-09-20 15:31:25 +00:00
|
|
|
return "".join([
|
|
|
|
chunk async for chunk in cls.create_async_generator(
|
|
|
|
model,
|
|
|
|
messages,
|
|
|
|
stream=False,
|
|
|
|
**kwargs
|
|
|
|
)
|
|
|
|
])
|
2023-08-25 04:41:32 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
@abstractmethod
|
|
|
|
def create_async_generator(
|
2023-09-18 05:15:43 +00:00
|
|
|
model: str,
|
|
|
|
messages: list[dict[str, str]],
|
|
|
|
**kwargs
|
|
|
|
) -> AsyncGenerator:
|
2023-09-26 08:03:37 +00:00
|
|
|
raise NotImplementedError()
|