2023-07-28 10:07:17 +00:00
|
|
|
import requests
|
|
|
|
|
|
|
|
from ..typing import Any, CreateResult
|
|
|
|
from .base_provider import BaseProvider
|
|
|
|
|
|
|
|
|
|
|
|
class Yqcloud(BaseProvider):
|
|
|
|
url = "https://chat9.yqcloud.top/"
|
|
|
|
working = True
|
|
|
|
supports_gpt_35_turbo = True
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def create_completion(
|
|
|
|
model: str,
|
|
|
|
messages: list[dict[str, str]],
|
|
|
|
stream: bool,
|
|
|
|
**kwargs: Any,
|
|
|
|
) -> CreateResult:
|
|
|
|
headers = _create_header()
|
|
|
|
payload = _create_payload(messages)
|
|
|
|
|
|
|
|
url = "https://api.aichatos.cloud/api/generateStream"
|
|
|
|
response = requests.post(url=url, headers=headers, json=payload)
|
|
|
|
response.raise_for_status()
|
2023-08-17 20:59:25 +00:00
|
|
|
response.encoding = 'utf-8'
|
2023-07-28 10:07:17 +00:00
|
|
|
yield response.text
|
|
|
|
|
|
|
|
|
|
|
|
def _create_header():
|
|
|
|
return {
|
|
|
|
"accept": "application/json, text/plain, */*",
|
|
|
|
"content-type": "application/json",
|
|
|
|
"origin": "https://chat9.yqcloud.top",
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def _create_payload(messages: list[dict[str, str]]):
|
|
|
|
prompt = messages[-1]["content"]
|
|
|
|
return {
|
|
|
|
"prompt": prompt,
|
|
|
|
"network": True,
|
|
|
|
"system": "",
|
|
|
|
"withoutContext": False,
|
|
|
|
"stream": False,
|
|
|
|
}
|