mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-03 03:40:12 +00:00
84 lines
3.2 KiB
Python
84 lines
3.2 KiB
Python
from __future__ import annotations
|
|
|
|
from aiohttp import ClientSession
|
|
import execjs, os, json
|
|
|
|
from ..typing import AsyncResult, Messages
|
|
from .base_provider import AsyncGeneratorProvider
|
|
from .helper import format_prompt
|
|
|
|
class GptForLove(AsyncGeneratorProvider):
|
|
url = "https://ai18.gptforlove.com"
|
|
working = True
|
|
supports_gpt_35_turbo = True
|
|
|
|
@classmethod
|
|
async def create_async_generator(
|
|
cls,
|
|
model: str,
|
|
messages: Messages,
|
|
proxy: str = None,
|
|
**kwargs
|
|
) -> AsyncResult:
|
|
if not model:
|
|
model = "gpt-3.5-turbo"
|
|
headers = {
|
|
"authority": "api.gptplus.one",
|
|
"accept": "application/json, text/plain, */*",
|
|
"accept-language": "de-DE,de;q=0.9,en-DE;q=0.8,en;q=0.7,en-US;q=0.6,nl;q=0.5,zh-CN;q=0.4,zh-TW;q=0.3,zh;q=0.2",
|
|
"content-type": "application/json",
|
|
"origin": cls.url,
|
|
"referer": f"{cls.url}/",
|
|
"sec-ch-ua": "\"Google Chrome\";v=\"117\", \"Not;A=Brand\";v=\"8\", \"Chromium\";v=\"117\"",
|
|
"sec-ch-ua-mobile": "?0",
|
|
"sec-ch-ua-platform": "Linux",
|
|
"sec-fetch-dest": "empty",
|
|
"sec-fetch-mode": "cors",
|
|
"sec-fetch-site": "cross-site",
|
|
"user-agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36"
|
|
}
|
|
async with ClientSession(headers=headers) as session:
|
|
prompt = format_prompt(messages)
|
|
data = {
|
|
"prompt": prompt,
|
|
"options": {},
|
|
"systemMessage": kwargs.get("system_message", "You are ChatGPT, the version is GPT3.5, a large language model trained by OpenAI. Follow the user's instructions carefully."),
|
|
"temperature": kwargs.get("temperature", 0.8),
|
|
"top_p": kwargs.get("top_p", 1),
|
|
"secret": get_secret(),
|
|
}
|
|
async with session.post("https://api.gptplus.one/chat-process", json=data, proxy=proxy) as response:
|
|
response.raise_for_status()
|
|
async for line in response.content:
|
|
try:
|
|
line = json.loads(line)
|
|
except:
|
|
raise RuntimeError(f"Broken line: {line}")
|
|
if "detail" in line:
|
|
if content := line["detail"]["choices"][0]["delta"].get(
|
|
"content"
|
|
):
|
|
yield content
|
|
elif "10分钟内提问超过了5次" in line:
|
|
raise RuntimeError("Rate limit reached")
|
|
else:
|
|
raise RuntimeError(f"Response: {line}")
|
|
|
|
|
|
def get_secret() -> str:
|
|
dir = os.path.dirname(__file__)
|
|
include = f'{dir}/npm/node_modules/crypto-js/crypto-js'
|
|
source = """
|
|
CryptoJS = require({include})
|
|
var k = '14487141bvirvvG'
|
|
, e = Math.floor(new Date().getTime() / 1e3);
|
|
var t = CryptoJS.enc.Utf8.parse(e)
|
|
, o = CryptoJS.AES.encrypt(t, k, {
|
|
mode: CryptoJS.mode.ECB,
|
|
padding: CryptoJS.pad.Pkcs7
|
|
});
|
|
return o.toString()
|
|
"""
|
|
source = source.replace('{include}', json.dumps(include))
|
|
return execjs.compile(source).call('')
|