XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

Update (g4f/Provider/)

991c35e5
kqlio67 <kqlio67@users.noreply.github.com>
提交于

代码差异

3 个文件 +6 -6
Modified g4f/Provider/__init__.py +0 -1
@@ -11,7 +11,6 @@ from .needs_auth import *
11 11 from .not_working import *
12 12 from .local import *
13 13
14 from .AIChatFree import AIChatFree
15 14 from .AIUncensored import AIUncensored
16 15 from .Allyfy import Allyfy
17 16 from .AiMathGPT import AiMathGPT
Renamed g4f/Provider/not_working/AIChatFree.py +5 -5
@@ -5,11 +5,11 @@ from hashlib import sha256
5 5
6 6 from aiohttp import BaseConnector, ClientSession
7 7
8 from ..errors import RateLimitError
9 from ..requests import raise_for_status
10 from ..requests.aiohttp import get_connector
11 from ..typing import AsyncResult, Messages
12 from .base_provider import AsyncGeneratorProvider, ProviderModelMixin
8 from ...errors import RateLimitError
9 from ...requests import raise_for_status
10 from ...requests.aiohttp import get_connector
11 from ...typing import AsyncResult, Messages
12 from ..base_provider import AsyncGeneratorProvider, ProviderModelMixin
13 13
14 14
15 15 class AIChatFree(AsyncGeneratorProvider, ProviderModelMixin):
Modified g4f/Provider/not_working/__init__.py +1 -0
@@ -1,5 +1,6 @@
1 1 from .Ai4Chat import Ai4Chat
2 2 from .AI365VIP import AI365VIP
3 from .AIChatFree import AIChatFree
3 4 from .AiChatOnline import AiChatOnline
4 5 from .AiChats import AiChats
5 6 from .AmigoChat import AmigoChat