Dmitry Afanasyev a95403f594
Feat/fix start (#1)
format code
2023-09-16 20:09:40 +03:00

54 lines
1.6 KiB
Python

import json
import sys
from re import findall
from curl_cffi import requests
config = json.loads(sys.argv[1])
prompt = config["messages"][-1]["content"]
headers = {
"authority": "api.gptplus.one",
"accept": "application/json, text/plain, */*",
"accept-language": "ru-RU,ru;q=0.9,en-US;q=0.8,en;q=0.7,ja;q=0.6,zh-TW;q=0.5,zh;q=0.4",
"content-type": "application/octet-stream",
"origin": "https://ai.gptforlove.com/",
"referer": "https://ai.gptforlove.com/",
"sec-ch-ua": '"Google Chrome";v="113", "Chromium";v="113", "Not-A.Brand";v="24"',
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-platform": '"macOS"',
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "cross-site",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36",
}
json_data = {"prompt": prompt, "options": {}}
def format(chunk):
try:
completion_chunk = findall(r'content":"(.*)"},"fin', chunk.decode())[0]
print(completion_chunk, flush=True, end="")
except Exception:
print(f"[ERROR] an error occured, retrying... | [[{chunk.decode()}]]", flush=True)
return
while True:
try:
response = requests.post(
"https://api.gptplus.one/api/chat-process",
headers=headers,
json=json_data,
content_callback=format,
impersonate="chrome110",
)
exit(0)
except Exception as e:
print("[ERROR] an error occured, retrying... |", e, flush=True)
continue