2023-09-03 08:26:26 +00:00
|
|
|
from __future__ import annotations
|
2023-06-24 01:47:00 +00:00
|
|
|
|
2023-12-07 06:18:05 +00:00
|
|
|
import os
|
2023-09-27 18:07:12 +00:00
|
|
|
|
2024-04-07 08:36:13 +00:00
|
|
|
from . import debug, version
|
|
|
|
from .models import Model
|
|
|
|
from .typing import Messages, CreateResult, AsyncResult, Union
|
|
|
|
from .errors import StreamNotSupportedError, ModelNotAllowedError
|
|
|
|
from .cookies import get_cookies, set_cookies
|
|
|
|
from .providers.types import ProviderType
|
|
|
|
from .providers.base_provider import AsyncGeneratorProvider
|
|
|
|
from .client.service import get_model_and_provider, get_last_provider
|
2023-09-20 12:52:50 +00:00
|
|
|
|
2023-06-24 01:47:00 +00:00
|
|
|
class ChatCompletion:
|
|
|
|
@staticmethod
|
2023-10-19 14:14:48 +00:00
|
|
|
def create(model : Union[Model, str],
|
2023-10-12 13:51:11 +00:00
|
|
|
messages : Messages,
|
2024-01-01 16:48:57 +00:00
|
|
|
provider : Union[ProviderType, str, None] = None,
|
2023-10-12 13:51:11 +00:00
|
|
|
stream : bool = False,
|
2023-10-13 05:45:29 +00:00
|
|
|
auth : Union[str, None] = None,
|
2024-01-01 16:48:57 +00:00
|
|
|
ignored : list[str] = None,
|
2023-12-06 08:35:36 +00:00
|
|
|
ignore_working: bool = False,
|
2024-02-08 21:02:52 +00:00
|
|
|
ignore_stream: bool = False,
|
2024-01-10 09:34:56 +00:00
|
|
|
patch_provider: callable = None,
|
2023-12-06 08:35:36 +00:00
|
|
|
**kwargs) -> Union[CreateResult, str]:
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Creates a chat completion using the specified model, provider, and messages.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
model (Union[Model, str]): The model to use, either as an object or a string identifier.
|
|
|
|
messages (Messages): The messages for which the completion is to be created.
|
|
|
|
provider (Union[ProviderType, str, None], optional): The provider to use, either as an object, a string identifier, or None.
|
|
|
|
stream (bool, optional): Indicates if the operation should be performed as a stream.
|
|
|
|
auth (Union[str, None], optional): Authentication token or credentials, if required.
|
|
|
|
ignored (list[str], optional): List of provider names to be ignored.
|
|
|
|
ignore_working (bool, optional): If True, ignores the working status of the provider.
|
2024-02-08 21:02:52 +00:00
|
|
|
ignore_stream (bool, optional): If True, ignores the stream and authentication requirement checks.
|
2024-01-14 06:45:41 +00:00
|
|
|
patch_provider (callable, optional): Function to modify the provider.
|
|
|
|
**kwargs: Additional keyword arguments.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Union[CreateResult, str]: The result of the chat completion operation.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
AuthenticationRequiredError: If authentication is required but not provided.
|
|
|
|
ProviderNotFoundError, ModelNotFoundError: If the specified provider or model is not found.
|
|
|
|
ProviderNotWorkingError: If the provider is not operational.
|
|
|
|
StreamNotSupportedError: If streaming is requested but not supported by the provider.
|
|
|
|
"""
|
2024-02-08 21:02:52 +00:00
|
|
|
model, provider = get_model_and_provider(
|
|
|
|
model, provider, stream,
|
|
|
|
ignored, ignore_working,
|
|
|
|
ignore_stream or kwargs.get("ignore_stream_and_auth")
|
|
|
|
)
|
2023-10-07 08:17:43 +00:00
|
|
|
|
2024-04-07 08:36:13 +00:00
|
|
|
if auth is not None:
|
2023-08-27 15:37:44 +00:00
|
|
|
kwargs['auth'] = auth
|
2023-12-10 23:56:06 +00:00
|
|
|
|
|
|
|
if "proxy" not in kwargs:
|
|
|
|
proxy = os.environ.get("G4F_PROXY")
|
|
|
|
if proxy:
|
|
|
|
kwargs['proxy'] = proxy
|
2023-07-28 10:07:17 +00:00
|
|
|
|
2024-01-10 09:34:56 +00:00
|
|
|
if patch_provider:
|
|
|
|
provider = patch_provider(provider)
|
|
|
|
|
2024-01-01 16:48:57 +00:00
|
|
|
result = provider.create_completion(model, messages, stream, **kwargs)
|
2024-02-09 03:24:21 +00:00
|
|
|
return result if stream else ''.join([str(chunk) for chunk in result])
|
2023-09-20 12:52:50 +00:00
|
|
|
|
|
|
|
@staticmethod
|
2024-01-01 16:48:57 +00:00
|
|
|
def create_async(model : Union[Model, str],
|
|
|
|
messages : Messages,
|
|
|
|
provider : Union[ProviderType, str, None] = None,
|
|
|
|
stream : bool = False,
|
|
|
|
ignored : list[str] = None,
|
2024-04-07 08:36:13 +00:00
|
|
|
ignore_working: bool = False,
|
2024-01-10 09:34:56 +00:00
|
|
|
patch_provider: callable = None,
|
2024-01-01 16:48:57 +00:00
|
|
|
**kwargs) -> Union[AsyncResult, str]:
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Asynchronously creates a completion using the specified model and provider.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
model (Union[Model, str]): The model to use, either as an object or a string identifier.
|
|
|
|
messages (Messages): Messages to be processed.
|
|
|
|
provider (Union[ProviderType, str, None]): The provider to use, either as an object, a string identifier, or None.
|
|
|
|
stream (bool): Indicates if the operation should be performed as a stream.
|
|
|
|
ignored (list[str], optional): List of provider names to be ignored.
|
|
|
|
patch_provider (callable, optional): Function to modify the provider.
|
|
|
|
**kwargs: Additional keyword arguments.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Union[AsyncResult, str]: The result of the asynchronous chat completion operation.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
StreamNotSupportedError: If streaming is requested but not supported by the provider.
|
|
|
|
"""
|
2024-04-07 08:36:13 +00:00
|
|
|
model, provider = get_model_and_provider(model, provider, False, ignored, ignore_working)
|
2023-09-20 12:52:50 +00:00
|
|
|
|
2023-11-20 13:02:51 +00:00
|
|
|
if stream:
|
|
|
|
if isinstance(provider, type) and issubclass(provider, AsyncGeneratorProvider):
|
2024-01-01 16:48:57 +00:00
|
|
|
return provider.create_async_generator(model, messages, **kwargs)
|
2023-12-10 23:56:06 +00:00
|
|
|
raise StreamNotSupportedError(f'{provider.__name__} does not support "stream" argument in "create_async"')
|
2023-11-20 13:02:51 +00:00
|
|
|
|
2024-01-10 09:34:56 +00:00
|
|
|
if patch_provider:
|
|
|
|
provider = patch_provider(provider)
|
|
|
|
|
2024-01-01 16:48:57 +00:00
|
|
|
return provider.create_async(model, messages, **kwargs)
|
2023-09-23 10:16:19 +00:00
|
|
|
|
|
|
|
class Completion:
|
|
|
|
@staticmethod
|
2023-10-19 14:14:48 +00:00
|
|
|
def create(model : Union[Model, str],
|
|
|
|
prompt : str,
|
2024-01-01 16:48:57 +00:00
|
|
|
provider : Union[ProviderType, None] = None,
|
2023-10-19 14:14:48 +00:00
|
|
|
stream : bool = False,
|
2024-01-01 16:48:57 +00:00
|
|
|
ignored : list[str] = None, **kwargs) -> Union[CreateResult, str]:
|
2024-01-14 06:45:41 +00:00
|
|
|
"""
|
|
|
|
Creates a completion based on the provided model, prompt, and provider.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
model (Union[Model, str]): The model to use, either as an object or a string identifier.
|
|
|
|
prompt (str): The prompt text for which the completion is to be created.
|
|
|
|
provider (Union[ProviderType, None], optional): The provider to use, either as an object or None.
|
|
|
|
stream (bool, optional): Indicates if the operation should be performed as a stream.
|
|
|
|
ignored (list[str], optional): List of provider names to be ignored.
|
|
|
|
**kwargs: Additional keyword arguments.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Union[CreateResult, str]: The result of the completion operation.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
ModelNotAllowedError: If the specified model is not allowed for use with this method.
|
|
|
|
"""
|
2023-09-23 10:16:19 +00:00
|
|
|
allowed_models = [
|
|
|
|
'code-davinci-002',
|
|
|
|
'text-ada-001',
|
|
|
|
'text-babbage-001',
|
|
|
|
'text-curie-001',
|
|
|
|
'text-davinci-002',
|
|
|
|
'text-davinci-003'
|
|
|
|
]
|
|
|
|
if model not in allowed_models:
|
2024-01-01 16:48:57 +00:00
|
|
|
raise ModelNotAllowedError(f'Can\'t use {model} with Completion.create()')
|
2023-10-07 08:17:43 +00:00
|
|
|
|
2023-10-13 05:45:29 +00:00
|
|
|
model, provider = get_model_and_provider(model, provider, stream, ignored)
|
2023-09-23 10:16:19 +00:00
|
|
|
|
2024-01-01 16:48:57 +00:00
|
|
|
result = provider.create_completion(model, [{"role": "user", "content": prompt}], stream, **kwargs)
|
2023-09-23 10:16:19 +00:00
|
|
|
|
2024-04-07 08:36:13 +00:00
|
|
|
return result if stream else ''.join(result)
|