We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f97ed2 commit 9d61053Copy full SHA for 9d61053
src/pytgpt/async_providers.py
@@ -2,15 +2,13 @@
2
from pytgpt.openai import AsyncOPENAI
3
from pytgpt.koboldai import AsyncKOBOLDAI
4
from pytgpt.groq import AsyncGROQ
5
-from pytgpt.blackboxai import AsyncBLACKBOXAI
6
from pytgpt.novita import AsyncNOVITA
7
from pytgpt.ai4chat import AsyncAI4CHAT
8
from pytgpt.gpt4free import AsyncGPT4FREE
9
10
mapper: dict[str, object] = {
11
"phind": AsyncPHIND,
12
"koboldai": AsyncKOBOLDAI,
13
- "blackboxai": AsyncBLACKBOXAI,
14
"gpt4free": AsyncGPT4FREE,
15
"groq": AsyncGROQ,
16
"openai": AsyncOPENAI,
@@ -20,6 +18,5 @@
20
18
tgpt_mapper: dict[str, object] = {
21
19
22
23
24
"ai4chat": AsyncAI4CHAT,
25
}
0 commit comments