2023-09-03 08:26:26 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-07-28 10:07:17 +00:00
|
|
|
import json
|
|
|
|
|
2023-10-09 08:22:17 +00:00
|
|
|
from ..typing import AsyncResult, Messages
|
2023-10-02 04:47:07 +00:00
|
|
|
from ..requests import StreamSession
|
2023-10-05 03:13:37 +00:00
|
|
|
from .base_provider import AsyncGeneratorProvider, format_prompt, get_cookies
|
2023-07-28 10:07:17 +00:00
|
|
|
|
|
|
|
|
2023-10-02 04:47:07 +00:00
|
|
|
class AItianhu(AsyncGeneratorProvider):
|
2023-09-05 15:27:24 +00:00
|
|
|
url = "https://www.aitianhu.com"
|
2023-11-18 03:38:31 +00:00
|
|
|
working = False
|
2023-07-28 10:07:17 +00:00
|
|
|
supports_gpt_35_turbo = True
|
|
|
|
|
2023-09-05 15:27:24 +00:00
|
|
|
@classmethod
|
2023-10-02 04:47:07 +00:00
|
|
|
async def create_async_generator(
|
2023-09-05 15:27:24 +00:00
|
|
|
cls,
|
2023-07-28 10:07:17 +00:00
|
|
|
model: str,
|
2023-10-09 08:22:17 +00:00
|
|
|
messages: Messages,
|
2023-09-05 15:27:24 +00:00
|
|
|
proxy: str = None,
|
2023-10-05 03:13:37 +00:00
|
|
|
cookies: dict = None,
|
2023-10-15 23:47:10 +00:00
|
|
|
timeout: int = 120, **kwargs) -> AsyncResult:
|
|
|
|
|
2023-10-05 03:13:37 +00:00
|
|
|
if not cookies:
|
2023-10-20 23:52:19 +00:00
|
|
|
cookies = get_cookies(domain_name='www.aitianhu.com')
|
2023-10-23 07:46:25 +00:00
|
|
|
if not cookies:
|
|
|
|
raise RuntimeError(f"g4f.provider.{cls.__name__} requires cookies [refresh https://www.aitianhu.com on chrome]")
|
|
|
|
|
2023-09-18 01:21:12 +00:00
|
|
|
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
|
|
|
}
|
2023-10-23 07:46:25 +00:00
|
|
|
|
2023-10-02 04:47:07 +00:00
|
|
|
headers = {
|
2023-10-15 23:47:10 +00:00
|
|
|
'authority': 'www.aitianhu.com',
|
|
|
|
'accept': 'application/json, text/plain, */*',
|
|
|
|
'accept-language': 'en,fr-FR;q=0.9,fr;q=0.8,es-ES;q=0.7,es;q=0.6,en-US;q=0.5,am;q=0.4,de;q=0.3',
|
|
|
|
'content-type': 'application/json',
|
|
|
|
'origin': 'https://www.aitianhu.com',
|
|
|
|
'referer': 'https://www.aitianhu.com/',
|
|
|
|
'sec-ch-ua': '"Chromium";v="118", "Google Chrome";v="118", "Not=A?Brand";v="99"',
|
|
|
|
'sec-ch-ua-mobile': '?0',
|
|
|
|
'sec-ch-ua-platform': '"macOS"',
|
|
|
|
'sec-fetch-dest': 'empty',
|
|
|
|
'sec-fetch-mode': 'cors',
|
|
|
|
'sec-fetch-site': 'same-origin',
|
|
|
|
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36',
|
2023-10-02 04:47:07 +00:00
|
|
|
}
|
2023-10-23 07:46:25 +00:00
|
|
|
|
2023-10-15 23:47:10 +00:00
|
|
|
async with StreamSession(headers=headers,
|
2023-10-23 07:46:25 +00:00
|
|
|
cookies=cookies,
|
|
|
|
timeout=timeout,
|
|
|
|
proxies={"https": proxy},
|
|
|
|
impersonate="chrome107", verify=False) as session:
|
2023-10-15 23:47:10 +00:00
|
|
|
|
2023-10-02 04:47:07 +00:00
|
|
|
async with session.post(f"{cls.url}/api/chat-process", json=data) as response:
|
|
|
|
response.raise_for_status()
|
2023-10-23 07:46:25 +00:00
|
|
|
|
2023-10-02 04:47:07 +00:00
|
|
|
async for line in response.iter_lines():
|
2023-10-04 05:20:51 +00:00
|
|
|
if line == b"<script>":
|
2023-10-05 03:13:37 +00:00
|
|
|
raise RuntimeError("Solve challenge and pass cookies")
|
2023-10-23 07:46:25 +00:00
|
|
|
|
2023-10-02 04:47:07 +00:00
|
|
|
if b"platform's risk control" in line:
|
|
|
|
raise RuntimeError("Platform's Risk Control")
|
2023-10-23 07:46:25 +00:00
|
|
|
|
2023-10-02 04:47:07 +00:00
|
|
|
line = json.loads(line)
|
2023-10-23 07:46:25 +00:00
|
|
|
|
|
|
|
if "detail" not in line:
|
2023-10-02 04:47:07 +00:00
|
|
|
raise RuntimeError(f"Response: {line}")
|
2023-09-05 15:27:24 +00:00
|
|
|
|
2023-11-20 16:35:18 +00:00
|
|
|
content = line["detail"]["choices"][0]["delta"].get(
|
2023-11-20 12:59:14 +00:00
|
|
|
"content"
|
2023-11-20 16:35:18 +00:00
|
|
|
)
|
|
|
|
if content:
|
|
|
|
yield content
|