You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gpt4free/g4f/Provider/__init__.py

96 lines
2.2 KiB
Python

from __future__ import annotations
from .Acytoo import Acytoo
from .AiAsk import AiAsk
from .Aibn import Aibn
from .Aichat import Aichat
from .Ails import Ails
from .AItianhu import AItianhu
from .AItianhuSpace import AItianhuSpace
from .Aivvm import Aivvm
from .Bing import Bing
from .ChatBase import ChatBase
from .ChatForAi import ChatForAi
from .Chatgpt4Online import Chatgpt4Online
from .ChatgptAi import ChatgptAi
from .ChatgptDemo import ChatgptDemo
from .ChatgptDuo import ChatgptDuo
from .ChatgptLogin import ChatgptLogin
from .ChatgptX import ChatgptX
from .DeepAi import DeepAi
from .FreeGpt import FreeGpt
from .GPTalk import GPTalk
from .GptForLove import GptForLove
from .GptGo import GptGo
from .H2o import H2o
from .Liaobots import Liaobots
from .Myshell import Myshell
from .Phind import Phind
from .Vercel import Vercel
from .Vitalentum import Vitalentum
from .Ylokh import Ylokh
from .You import You
from .Yqcloud import Yqcloud
from .base_provider import BaseProvider, AsyncProvider, AsyncGeneratorProvider
from .retry_provider import RetryProvider
from .deprecated import *
from .needs_auth import *
from .unfinished import *
__all__ = [
'BaseProvider',
'AsyncProvider',
'AsyncGeneratorProvider',
'RetryProvider',
'Acytoo',
'AiAsk',
'Aibn',
'Aichat',
'Ails',
'AiService',
'AItianhu',
'AItianhuSpace',
'Aivvm',
'Bard',
'Bing',
'ChatBase',
'ChatForAi',
'Chatgpt4Online',
'ChatgptAi',
'ChatgptDemo',
'ChatgptDuo',
'ChatgptLogin',
'ChatgptX',
'CodeLinkAva',
'DeepAi',
'DfeHub',
'EasyChat',
'Forefront',
'FreeGpt',
'GPTalk',
'GptForLove',
'GetGpt',
'GptGo',
'H2o',
'HuggingChat',
'Liaobots',
'Lockchat',
'Myshell',
'Opchatgpts',
'Raycast',
'OpenaiChat',
'OpenAssistant',
'PerplexityAi',
'Phind',
'Theb',
'Vercel',
'Vitalentum',
'Wewordle',
'Ylokh',
'You',
'Yqcloud',
'Equing',
'FastGpt',
'Wuguokai',
'V50'
]