2023-09-03 11:26:26 +03:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-10-08 14:59:56 +03:00
|
|
|
import random
|
2023-08-28 02:43:45 +03:00
|
|
|
from aiohttp import ClientSession
|
2023-07-28 13:07:17 +03:00
|
|
|
|
2023-10-08 14:59:56 +03:00
|
|
|
from ..typing import AsyncResult, Messages
|
2023-09-05 18:27:24 +03:00
|
|
|
from .base_provider import AsyncGeneratorProvider, format_prompt
|
2023-07-28 13:07:17 +03:00
|
|
|
|
|
|
|
|
2023-09-05 18:27:24 +03:00
|
|
|
class Yqcloud(AsyncGeneratorProvider):
|
2023-08-28 02:43:45 +03:00
|
|
|
url = "https://chat9.yqcloud.top/"
|
2023-10-21 02:52:19 +03:00
|
|
|
working = False
|
2023-08-28 02:43:45 +03:00
|
|
|
supports_gpt_35_turbo = True
|
2023-07-28 13:07:17 +03:00
|
|
|
|
|
|
|
@staticmethod
|
2023-09-05 18:27:24 +03:00
|
|
|
async def create_async_generator(
|
2023-07-28 13:07:17 +03:00
|
|
|
model: str,
|
2023-10-08 14:59:56 +03:00
|
|
|
messages: Messages,
|
2023-08-28 02:43:45 +03:00
|
|
|
proxy: str = None,
|
|
|
|
**kwargs,
|
2023-10-08 14:59:56 +03:00
|
|
|
) -> AsyncResult:
|
2023-08-28 02:43:45 +03:00
|
|
|
async with ClientSession(
|
2023-10-07 10:02:48 +03:00
|
|
|
headers=_create_header()
|
2023-08-28 02:43:45 +03:00
|
|
|
) as session:
|
2023-10-08 14:59:56 +03:00
|
|
|
payload = _create_payload(messages, **kwargs)
|
2023-08-28 02:43:45 +03:00
|
|
|
async with session.post("https://api.aichatos.cloud/api/generateStream", proxy=proxy, json=payload) as response:
|
|
|
|
response.raise_for_status()
|
2023-10-08 14:59:56 +03:00
|
|
|
async for chunk in response.content.iter_any():
|
|
|
|
if chunk:
|
|
|
|
chunk = chunk.decode()
|
|
|
|
if "sorry, 您的ip已由于触发防滥用检测而被封禁" in chunk:
|
2023-10-08 12:39:19 +03:00
|
|
|
raise RuntimeError("IP address is blocked by abuse detection.")
|
2023-10-08 14:59:56 +03:00
|
|
|
yield chunk
|
2023-07-28 13:07:17 +03:00
|
|
|
|
|
|
|
|
|
|
|
def _create_header():
|
|
|
|
return {
|
2023-08-27 18:37:44 +03:00
|
|
|
"accept" : "application/json, text/plain, */*",
|
|
|
|
"content-type" : "application/json",
|
|
|
|
"origin" : "https://chat9.yqcloud.top",
|
2023-07-28 13:07:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-10-08 14:59:56 +03:00
|
|
|
def _create_payload(
|
|
|
|
messages: Messages,
|
|
|
|
system_message: str = "",
|
|
|
|
user_id: int = None,
|
|
|
|
**kwargs
|
|
|
|
):
|
|
|
|
if not user_id:
|
|
|
|
user_id = random.randint(1690000544336, 2093025544336)
|
2023-07-28 13:07:17 +03:00
|
|
|
return {
|
2023-08-28 02:43:45 +03:00
|
|
|
"prompt": format_prompt(messages),
|
|
|
|
"network": True,
|
2023-10-08 14:59:56 +03:00
|
|
|
"system": system_message,
|
2023-07-28 13:07:17 +03:00
|
|
|
"withoutContext": False,
|
2023-09-05 18:27:24 +03:00
|
|
|
"stream": True,
|
2023-10-08 14:59:56 +03:00
|
|
|
"userId": f"#/chat/{user_id}"
|
2023-08-28 02:43:45 +03:00
|
|
|
}
|