gpt4free/g4f/__init__.py

55 lines
1.9 KiB
Python
Raw Normal View History

from __future__ import annotations
2023-09-17 17:24:15 -04:00
from g4f import models
2023-08-27 11:37:44 -04:00
from .Provider import BaseProvider
from .typing import Any, CreateResult, Union
import random
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
class ChatCompletion:
@staticmethod
2023-07-28 06:07:17 -04:00
def create(
2023-08-27 11:37:44 -04:00
model : Union[models.Model, str],
messages : list[dict[str, str]],
provider : Union[type[BaseProvider], None] = None,
stream : bool = False,
auth : Union[str, None] = None, **kwargs: Any) -> Union[CreateResult, str]:
2023-07-28 06:07:17 -04:00
if isinstance(model, str):
if model in models.ModelUtils.convert:
2023-07-28 06:07:17 -04:00
model = models.ModelUtils.convert[model]
else:
2023-08-27 11:37:44 -04:00
raise Exception(f'The model: {model} does not exist')
2023-07-28 06:07:17 -04:00
if not provider:
2023-09-17 17:27:48 -04:00
if isinstance(model.best_provider, list):
if stream:
provider = random.choice([p for p in model.best_provider if p.supports_stream])
else:
provider = random.choice(model.best_provider)
else:
provider = model.best_provider
if not provider:
raise Exception(f'No provider found')
2023-07-28 06:07:17 -04:00
if not provider.working:
2023-08-27 11:37:44 -04:00
raise Exception(f'{provider.__name__} is not working')
2023-07-28 06:07:17 -04:00
if provider.needs_auth and not auth:
raise Exception(
2023-08-27 11:37:44 -04:00
f'ValueError: {provider.__name__} requires authentication (use auth=\'cookie or token or jwt ...\' param)')
2023-07-28 06:07:17 -04:00
if provider.needs_auth:
2023-08-27 11:37:44 -04:00
kwargs['auth'] = auth
2023-07-28 06:07:17 -04:00
if not provider.supports_stream and stream:
raise Exception(
2023-08-27 11:37:44 -04:00
f'ValueError: {provider.__name__} does not support "stream" argument')
2023-07-28 06:07:17 -04:00
if logging:
2023-08-27 11:37:44 -04:00
print(f'Using {provider.__name__} provider')
2023-07-28 06:07:17 -04:00
result = provider.create_completion(model.name, messages, stream, **kwargs)
2023-08-27 11:37:44 -04:00
return result if stream else ''.join(result)