From 88d2cbff099df00944ed6dfb6c73b1b5e8dfc7f9 Mon Sep 17 00:00:00 2001 From: Heiner Lohaus Date: Thu, 5 Oct 2023 05:13:37 +0200 Subject: Add AiAsk, Chatgpt4Online, ChatgptDemo and ChatgptX Provider Fix Bing, Liaobots and ChatgptAi Provider Add "gpt_35_long" model and custom timeout --- g4f/Provider/Chatgpt4Online.py | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 g4f/Provider/Chatgpt4Online.py (limited to 'g4f/Provider/Chatgpt4Online.py') diff --git a/g4f/Provider/Chatgpt4Online.py b/g4f/Provider/Chatgpt4Online.py new file mode 100644 index 00000000..b9631429 --- /dev/null +++ b/g4f/Provider/Chatgpt4Online.py @@ -0,0 +1,39 @@ +from __future__ import annotations + +import json +from aiohttp import ClientSession + +from ..typing import AsyncGenerator +from .base_provider import AsyncGeneratorProvider + + +class Chatgpt4Online(AsyncGeneratorProvider): + url = "https://chatgpt4online.org" + supports_gpt_35_turbo = True + working = True + + @classmethod + async def create_async_generator( + cls, + model: str, + messages: list[dict[str, str]], + **kwargs + ) -> AsyncGenerator: + async with ClientSession() as session: + data = { + "botId": "default", + "customId": None, + "session": "N/A", + "chatId": "", + "contextId": 58, + "messages": messages, + "newMessage": messages[-1]["content"], + "stream": True + } + async with session.post(cls.url + "/wp-json/mwai-ui/v1/chats/submit", json=data) as response: + response.raise_for_status() + async for line in response.content: + if line.startswith(b"data: "): + line = json.loads(line[6:]) + if line["type"] == "live": + yield line["data"] \ No newline at end of file -- cgit v1.2.3