gpt4free/g4f/Provider/AItianhu.py

51 lines
1.5 KiB
Python
Raw Normal View History

from __future__ import annotations
2023-07-28 10:07:17 +00:00
import json
from curl_cffi.requests import AsyncSession
2023-07-28 10:07:17 +00:00
from .base_provider import AsyncProvider, format_prompt
2023-07-28 10:07:17 +00:00
class AItianhu(AsyncProvider):
url = "https://www.aitianhu.com"
working = True
2023-07-28 10:07:17 +00:00
supports_gpt_35_turbo = True
@classmethod
async def create_async(
cls,
2023-07-28 10:07:17 +00:00
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
2023-07-28 10:07:17 +00:00
}
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"]
2023-07-28 10:07:17 +00:00
@classmethod
@property
def params(cls):
params = [
("model", "str"),
("messages", "list[dict[str, str]]"),
("stream", "bool"),
("proxy", "str"),
2023-07-28 10:07:17 +00:00
("temperature", "float"),
("top_p", "int"),
]
param = ", ".join([": ".join(p) for p in params])
2023-09-17 21:23:54 +00:00
return f"g4f.provider.{cls.__name__} supports: ({param})"