summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/Yqcloud.py
blob: 4417352542d3b4f0e8cabf835e99cdf27f82f74a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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)

        response = requests.post("https://api.aichatos.cloud/api/generateStream", 
                                 headers=headers, json=payload)
        
        response.raise_for_status()
        response.encoding = 'utf-8'
        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 = ""
    for message in messages:
        prompt += "%s: %s\n" % (message["role"], message["content"])
    prompt += "assistant:"
    
    return {
        "prompt"        : prompt,
        "network"       : True,
        "system"        : "",
        "withoutContext": False,
        "stream"        : False,
    }