gpt4free/g4f/__init__.py

46 lines
1.5 KiB
Python
Raw Normal View History

2023-07-28 06:07:17 -04:00
from . import models
2023-08-17 08:57:37 -04:00
from .Provider import BaseProvider
from .typing import Any, CreateResult, Union
2023-06-23 21:47:00 -04:00
2023-07-16 15:31:51 -04:00
logging = False
2023-06-23 21:47:00 -04:00
2023-07-28 06:07:17 -04:00
2023-06-23 21:47:00 -04:00
class ChatCompletion:
@staticmethod
2023-07-28 06:07:17 -04:00
def create(
2023-08-17 08:57:37 -04:00
model: Union[models.Model, str],
2023-07-28 06:07:17 -04:00
messages: list[dict[str, str]],
2023-08-17 08:57:37 -04:00
provider: Union[type[BaseProvider], None] = None,
2023-07-28 06:07:17 -04:00
stream: bool = False,
2023-08-17 08:57:37 -04:00
auth: Union[str, None] = None,
2023-07-28 06:07:17 -04:00
**kwargs: Any,
2023-08-17 08:57:37 -04:00
) -> Union[CreateResult, str]:
2023-07-28 06:07:17 -04:00
if isinstance(model, str):
try:
model = models.ModelUtils.convert[model]
except KeyError:
raise Exception(f"The model: {model} does not exist")
provider = model.best_provider if provider == None else provider
if not provider.working:
raise Exception(f"{provider.__name__} is not working")
if provider.needs_auth and not auth:
raise Exception(
f'ValueError: {provider.__name__} requires authentication (use auth="cookie or token or jwt ..." param)'
)
if provider.needs_auth:
kwargs["auth"] = auth
if not provider.supports_stream and stream:
raise Exception(
f"ValueError: {provider.__name__} does not support 'stream' argument"
)
if logging:
print(f"Using {provider.__name__} provider")
result = provider.create_completion(model.name, messages, stream, **kwargs)
return result if stream else "".join(result)