gpt4free/g4f/Provider/__init__.py

84 lines
1.8 KiB
Python
Raw Normal View History

from __future__ import annotations
2023-08-27 11:37:44 -04:00
from .Acytoo import Acytoo
from .Aibn import Aibn
2023-08-27 11:37:44 -04:00
from .Aichat import Aichat
from .Ails import Ails
from .AItianhu import AItianhu
from .AItianhuSpace import AItianhuSpace
from .Aivvm import Aivvm
2023-08-27 11:37:44 -04:00
from .Bing import Bing
2023-09-10 13:06:46 -04:00
from .ChatBase import ChatBase
from .ChatForAi import ChatForAi
2023-08-27 11:37:44 -04:00
from .ChatgptAi import ChatgptAi
from .ChatgptDuo import ChatgptDuo
2023-08-27 11:37:44 -04:00
from .ChatgptLogin import ChatgptLogin
from .DeepAi import DeepAi
from .FreeGpt import FreeGpt
from .GptGo import GptGo
2023-08-27 11:37:44 -04:00
from .H2o import H2o
from .Liaobots import Liaobots
from .Myshell import Myshell
from .Phind import Phind
2023-08-27 11:37:44 -04:00
from .Vercel import Vercel
from .Vitalentum import Vitalentum
from .Ylokh import Ylokh
2023-08-27 11:37:44 -04:00
from .You import You
from .Yqcloud import Yqcloud
2023-09-21 14:10:59 -04:00
from .base_provider import BaseProvider, AsyncProvider, AsyncGeneratorProvider
from .retry_provider import RetryProvider
2023-10-04 01:20:51 -04:00
from .deprecated import *
from .needs_auth import *
2023-06-23 21:47:00 -04:00
2023-07-28 06:07:17 -04:00
__all__ = [
2023-08-27 11:37:44 -04:00
'BaseProvider',
2023-09-21 14:10:59 -04:00
'AsyncProvider',
'AsyncGeneratorProvider',
'RetryProvider',
2023-08-27 11:37:44 -04:00
'Acytoo',
'Aibn',
2023-08-27 11:37:44 -04:00
'Aichat',
'Ails',
'AiService',
'AItianhu',
'AItianhuSpace',
'Aivvm',
2023-08-27 11:37:44 -04:00
'Bard',
'Bing',
2023-09-10 13:06:46 -04:00
'ChatBase',
'ChatForAi',
2023-08-27 11:37:44 -04:00
'ChatgptAi',
'ChatgptDuo',
2023-08-27 11:37:44 -04:00
'ChatgptLogin',
'CodeLinkAva',
2023-08-27 11:37:44 -04:00
'DeepAi',
'DfeHub',
'EasyChat',
'Forefront',
'FreeGpt',
2023-08-27 11:37:44 -04:00
'GetGpt',
'GptGo',
2023-08-27 11:37:44 -04:00
'H2o',
'HuggingChat',
2023-08-27 11:37:44 -04:00
'Liaobots',
'Lockchat',
'Myshell',
2023-08-27 11:37:44 -04:00
'Opchatgpts',
'Raycast',
'OpenaiChat',
'OpenAssistant',
'PerplexityAi',
'Phind',
2023-08-27 11:37:44 -04:00
'Theb',
'Vercel',
'Vitalentum',
2023-08-27 11:37:44 -04:00
'Wewordle',
'Ylokh',
2023-08-27 11:37:44 -04:00
'You',
'Yqcloud',
'Equing',
'FastGpt',
'Wuguokai',
'V50'
2023-07-28 06:07:17 -04:00
]