Update (g4f/Provider/)

This commit is contained in:
kqlio67
2024-11-07 10:57:11 +02:00
parent 1041e4d9dd
commit 991c35e50c
3 changed files with 6 additions and 6 deletions

View File

@@ -11,7 +11,6 @@ from .needs_auth import *
from .not_working import *
from .local import *
from .AIChatFree import AIChatFree
from .AIUncensored import AIUncensored
from .Allyfy import Allyfy
from .AiMathGPT import AiMathGPT

View File

@@ -5,11 +5,11 @@ from hashlib import sha256
from aiohttp import BaseConnector, ClientSession
from ..errors import RateLimitError
from ..requests import raise_for_status
from ..requests.aiohttp import get_connector
from ..typing import AsyncResult, Messages
from .base_provider import AsyncGeneratorProvider, ProviderModelMixin
from ...errors import RateLimitError
from ...requests import raise_for_status
from ...requests.aiohttp import get_connector
from ...typing import AsyncResult, Messages
from ..base_provider import AsyncGeneratorProvider, ProviderModelMixin
class AIChatFree(AsyncGeneratorProvider, ProviderModelMixin):

View File

@@ -1,5 +1,6 @@
from .Ai4Chat import Ai4Chat
from .AI365VIP import AI365VIP
from .AIChatFree import AIChatFree
from .AiChatOnline import AiChatOnline
from .AiChats import AiChats
from .AmigoChat import AmigoChat