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