summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/__init__.py
blob: 72a459c2dc838f8a0616961a59a89616900bba4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
from __future__ import annotations
from .Acytoo        import Acytoo
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 .ChatgptAi     import ChatgptAi
from .ChatgptDuo    import ChatgptDuo
from .ChatgptLogin  import ChatgptLogin
from .DeepAi        import DeepAi
from .FreeGpt       import FreeGpt
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 *

__all__ = [
    'BaseProvider',
    'AsyncProvider',
    'AsyncGeneratorProvider',
    'RetryProvider',
    'Acytoo',
    'Aibn',
    'Aichat',
    'Ails',
    'AiService',
    'AItianhu',
    'AItianhuSpace',
    'Aivvm',
    'Bard',
    'Bing',
    'ChatBase',
    'ChatForAi',
    'ChatgptAi',
    'ChatgptDuo',
    'ChatgptLogin',
    'CodeLinkAva',
    'DeepAi',
    'DfeHub',
    'EasyChat',
    'Forefront',
    'FreeGpt',
    'GetGpt',
    'GptGo',
    'H2o',
    'HuggingChat',
    'Liaobots',
    'Lockchat',
    'Myshell',
    'Opchatgpts',
    'Raycast',
    'OpenaiChat',
    'OpenAssistant',
    'PerplexityAi',
    'Phind',
    'Theb',
    'Vercel',
    'Vitalentum',
    'Wewordle',
    'Ylokh',
    'You',
    'Yqcloud',
    'Equing',
    'FastGpt',
    'Wuguokai',
    'V50'
]