summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/AItianhu.py
blob: 0f01e536fdf105215de6e6392d4a62aa8c655093 (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
50
from __future__ import annotations

import json
from curl_cffi.requests import AsyncSession

from .base_provider import AsyncProvider, format_prompt


class AItianhu(AsyncProvider):
    url = "https://www.aitianhu.com"
    working = True
    supports_gpt_35_turbo = True

    @classmethod
    async def create_async(
        cls,
        model: str,
        messages: list[dict[str, str]],
        proxy: str = None,
        **kwargs
    ) -> str:
        data = {
            "prompt": format_prompt(messages),
            "options": {},
            "systemMessage": "You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully.",
            "temperature": 0.8,
            "top_p": 1,
            **kwargs
        }
        async with AsyncSession(proxies={"https": proxy}, impersonate="chrome107", verify=False) as session:
            response = await session.post(cls.url + "/api/chat-process", json=data)
            response.raise_for_status()
            line = response.text.splitlines()[-1]
            line = json.loads(line)
            return line["text"]


    @classmethod
    @property
    def params(cls):
        params = [
            ("model", "str"),
            ("messages", "list[dict[str, str]]"),
            ("stream", "bool"),
            ("proxy", "str"),
            ("temperature", "float"),
            ("top_p", "int"),
        ]
        param = ", ".join([": ".join(p) for p in params])
        return f"g4f.provider.{cls.__name__} supports: ({param})"