From 1041e4d9dd6f791e03c949737560f20ed2dbfc5e Mon Sep 17 00:00:00 2001 From: kqlio67 Date: Thu, 7 Nov 2024 09:53:28 +0200 Subject: Update (g4f/Provider/AI365VIP.py g4f/Provider/__init__.py g4f/Provider/not_working/) --- g4f/Provider/AI365VIP.py | 69 ------------------------------------ g4f/Provider/__init__.py | 1 - g4f/Provider/not_working/AI365VIP.py | 69 ++++++++++++++++++++++++++++++++++++ g4f/Provider/not_working/__init__.py | 1 + 4 files changed, 70 insertions(+), 70 deletions(-) delete mode 100644 g4f/Provider/AI365VIP.py create mode 100644 g4f/Provider/not_working/AI365VIP.py (limited to 'g4f/Provider') diff --git a/g4f/Provider/AI365VIP.py b/g4f/Provider/AI365VIP.py deleted file mode 100644 index 511ad568..00000000 --- a/g4f/Provider/AI365VIP.py +++ /dev/null @@ -1,69 +0,0 @@ -from __future__ import annotations - -from aiohttp import ClientSession - -from ..typing import AsyncResult, Messages -from .base_provider import AsyncGeneratorProvider, ProviderModelMixin -from .helper import format_prompt - - -class AI365VIP(AsyncGeneratorProvider, ProviderModelMixin): - url = "https://chat.ai365vip.com" - api_endpoint = "/api/chat" - working = False - default_model = 'gpt-3.5-turbo' - models = [ - 'gpt-3.5-turbo', - 'gpt-3.5-turbo-16k', - 'gpt-4o', - ] - model_aliases = { - "gpt-3.5-turbo": "gpt-3.5-turbo-16k", - } - - @classmethod - async def create_async_generator( - cls, - model: str, - messages: Messages, - proxy: str = None, - **kwargs - ) -> AsyncResult: - headers = { - "accept": "*/*", - "accept-language": "en-US,en;q=0.9", - "content-type": "application/json", - "origin": cls.url, - "referer": f"{cls.url}/en", - "sec-ch-ua": '"Chromium";v="127", "Not)A;Brand";v="99"', - "sec-ch-ua-arch": '"x86"', - "sec-ch-ua-bitness": '"64"', - "sec-ch-ua-full-version": '"127.0.6533.119"', - "sec-ch-ua-full-version-list": '"Chromium";v="127.0.6533.119", "Not)A;Brand";v="99.0.0.0"', - "sec-ch-ua-mobile": "?0", - "sec-ch-ua-model": '""', - "sec-ch-ua-platform": '"Linux"', - "sec-ch-ua-platform-version": '"4.19.276"', - "sec-fetch-dest": "empty", - "sec-fetch-mode": "cors", - "sec-fetch-site": "same-origin", - "user-agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36", - } - async with ClientSession(headers=headers) as session: - data = { - "model": { - "id": model, - "name": "GPT-3.5", - "maxLength": 3000, - "tokenLimit": 2048 - }, - "messages": [{"role": "user", "content": format_prompt(messages)}], - "key": "", - "prompt": "You are a helpful assistant.", - "temperature": 1 - } - async with session.post(f"{cls.url}{cls.api_endpoint}", json=data, proxy=proxy) as response: - response.raise_for_status() - async for chunk in response.content: - if chunk: - yield chunk.decode() diff --git a/g4f/Provider/__init__.py b/g4f/Provider/__init__.py index f720a643..5a0196d3 100644 --- a/g4f/Provider/__init__.py +++ b/g4f/Provider/__init__.py @@ -11,7 +11,6 @@ from .needs_auth import * from .not_working import * from .local import * -from .AI365VIP import AI365VIP from .AIChatFree import AIChatFree from .AIUncensored import AIUncensored from .Allyfy import Allyfy diff --git a/g4f/Provider/not_working/AI365VIP.py b/g4f/Provider/not_working/AI365VIP.py new file mode 100644 index 00000000..a4bac0e2 --- /dev/null +++ b/g4f/Provider/not_working/AI365VIP.py @@ -0,0 +1,69 @@ +from __future__ import annotations + +from aiohttp import ClientSession + +from ...typing import AsyncResult, Messages +from ..base_provider import AsyncGeneratorProvider, ProviderModelMixin +from ..helper import format_prompt + + +class AI365VIP(AsyncGeneratorProvider, ProviderModelMixin): + url = "https://chat.ai365vip.com" + api_endpoint = "/api/chat" + working = False + default_model = 'gpt-3.5-turbo' + models = [ + 'gpt-3.5-turbo', + 'gpt-3.5-turbo-16k', + 'gpt-4o', + ] + model_aliases = { + "gpt-3.5-turbo": "gpt-3.5-turbo-16k", + } + + @classmethod + async def create_async_generator( + cls, + model: str, + messages: Messages, + proxy: str = None, + **kwargs + ) -> AsyncResult: + headers = { + "accept": "*/*", + "accept-language": "en-US,en;q=0.9", + "content-type": "application/json", + "origin": cls.url, + "referer": f"{cls.url}/en", + "sec-ch-ua": '"Chromium";v="127", "Not)A;Brand";v="99"', + "sec-ch-ua-arch": '"x86"', + "sec-ch-ua-bitness": '"64"', + "sec-ch-ua-full-version": '"127.0.6533.119"', + "sec-ch-ua-full-version-list": '"Chromium";v="127.0.6533.119", "Not)A;Brand";v="99.0.0.0"', + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-model": '""', + "sec-ch-ua-platform": '"Linux"', + "sec-ch-ua-platform-version": '"4.19.276"', + "sec-fetch-dest": "empty", + "sec-fetch-mode": "cors", + "sec-fetch-site": "same-origin", + "user-agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36", + } + async with ClientSession(headers=headers) as session: + data = { + "model": { + "id": model, + "name": "GPT-3.5", + "maxLength": 3000, + "tokenLimit": 2048 + }, + "messages": [{"role": "user", "content": format_prompt(messages)}], + "key": "", + "prompt": "You are a helpful assistant.", + "temperature": 1 + } + async with session.post(f"{cls.url}{cls.api_endpoint}", json=data, proxy=proxy) as response: + response.raise_for_status() + async for chunk in response.content: + if chunk: + yield chunk.decode() diff --git a/g4f/Provider/not_working/__init__.py b/g4f/Provider/not_working/__init__.py index 52c5c538..9dcc85d0 100644 --- a/g4f/Provider/not_working/__init__.py +++ b/g4f/Provider/not_working/__init__.py @@ -1,4 +1,5 @@ from .Ai4Chat import Ai4Chat +from .AI365VIP import AI365VIP from .AiChatOnline import AiChatOnline from .AiChats import AiChats from .AmigoChat import AmigoChat -- cgit v1.2.3