2023-09-03 11:26:26 +03:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-10-28 08:21:00 +03:00
|
|
|
import uuid, json, time, os
|
2023-11-11 12:14:39 +03:00
|
|
|
from py_arkose_generator.arkose import get_values_for_request
|
2023-08-28 02:43:45 +03:00
|
|
|
|
2023-10-04 08:20:51 +03:00
|
|
|
from ..base_provider import AsyncGeneratorProvider
|
2023-10-23 00:53:18 +03:00
|
|
|
from ..helper import get_browser, get_cookies, format_prompt, get_event_loop
|
2023-10-09 14:33:20 +03:00
|
|
|
from ...typing import AsyncResult, Messages
|
2023-10-04 08:20:51 +03:00
|
|
|
from ...requests import StreamSession
|
2023-10-28 08:21:00 +03:00
|
|
|
from ... import debug
|
2023-09-03 11:26:26 +03:00
|
|
|
|
2023-10-03 23:12:56 +03:00
|
|
|
class OpenaiChat(AsyncGeneratorProvider):
|
2023-08-27 18:37:44 +03:00
|
|
|
url = "https://chat.openai.com"
|
|
|
|
needs_auth = True
|
2023-09-05 18:27:24 +03:00
|
|
|
working = True
|
2023-08-25 07:41:32 +03:00
|
|
|
supports_gpt_35_turbo = True
|
2023-08-28 02:43:45 +03:00
|
|
|
_access_token = None
|
2023-08-25 07:41:32 +03:00
|
|
|
|
|
|
|
@classmethod
|
2023-10-03 23:12:56 +03:00
|
|
|
async def create_async_generator(
|
2023-08-25 07:41:32 +03:00
|
|
|
cls,
|
|
|
|
model: str,
|
2023-10-09 14:33:20 +03:00
|
|
|
messages: Messages,
|
2023-08-25 07:41:32 +03:00
|
|
|
proxy: str = None,
|
2023-10-09 14:33:20 +03:00
|
|
|
timeout: int = 120,
|
2023-09-05 18:27:24 +03:00
|
|
|
access_token: str = None,
|
2023-08-25 07:41:32 +03:00
|
|
|
cookies: dict = None,
|
2023-10-09 14:33:20 +03:00
|
|
|
**kwargs
|
|
|
|
) -> AsyncResult:
|
2023-09-25 16:52:19 +03:00
|
|
|
proxies = {"https": proxy}
|
2023-09-05 18:27:24 +03:00
|
|
|
if not access_token:
|
2023-09-10 00:07:00 +03:00
|
|
|
access_token = await cls.get_access_token(cookies, proxies)
|
2023-09-05 18:27:24 +03:00
|
|
|
headers = {
|
|
|
|
"Accept": "text/event-stream",
|
|
|
|
"Authorization": f"Bearer {access_token}",
|
|
|
|
}
|
2023-10-09 14:33:20 +03:00
|
|
|
async with StreamSession(
|
|
|
|
proxies=proxies,
|
|
|
|
headers=headers,
|
|
|
|
impersonate="chrome107",
|
|
|
|
timeout=timeout
|
|
|
|
) as session:
|
2023-09-05 18:27:24 +03:00
|
|
|
messages = [
|
|
|
|
{
|
|
|
|
"id": str(uuid.uuid4()),
|
|
|
|
"author": {"role": "user"},
|
|
|
|
"content": {"content_type": "text", "parts": [format_prompt(messages)]},
|
|
|
|
},
|
|
|
|
]
|
|
|
|
data = {
|
|
|
|
"action": "next",
|
2023-10-28 08:21:00 +03:00
|
|
|
"arkose_token": await get_arkose_token(proxy),
|
2023-09-05 18:27:24 +03:00
|
|
|
"messages": messages,
|
|
|
|
"conversation_id": None,
|
|
|
|
"parent_message_id": str(uuid.uuid4()),
|
|
|
|
"model": "text-davinci-002-render-sha",
|
|
|
|
"history_and_training_disabled": True,
|
|
|
|
}
|
2023-10-03 23:12:56 +03:00
|
|
|
async with session.post(f"{cls.url}/backend-api/conversation", json=data) as response:
|
|
|
|
response.raise_for_status()
|
|
|
|
last_message = ""
|
|
|
|
async for line in response.iter_lines():
|
|
|
|
if line.startswith(b"data: "):
|
|
|
|
line = line[6:]
|
|
|
|
if line == b"[DONE]":
|
|
|
|
break
|
2023-10-04 04:15:17 +03:00
|
|
|
try:
|
|
|
|
line = json.loads(line)
|
|
|
|
except:
|
|
|
|
continue
|
2023-10-28 08:21:00 +03:00
|
|
|
if "message" not in line:
|
|
|
|
continue
|
|
|
|
if "error" in line and line["error"]:
|
|
|
|
raise RuntimeError(line["error"])
|
|
|
|
if "message_type" not in line["message"]["metadata"]:
|
2023-10-04 04:15:17 +03:00
|
|
|
continue
|
|
|
|
if line["message"]["metadata"]["message_type"] == "next":
|
2023-10-03 23:12:56 +03:00
|
|
|
new_message = line["message"]["content"]["parts"][0]
|
|
|
|
yield new_message[len(last_message):]
|
|
|
|
last_message = new_message
|
|
|
|
|
|
|
|
@classmethod
|
2023-10-23 00:53:18 +03:00
|
|
|
async def browse_access_token(cls) -> str:
|
|
|
|
def browse() -> str:
|
|
|
|
try:
|
|
|
|
from selenium.webdriver.common.by import By
|
|
|
|
from selenium.webdriver.support.ui import WebDriverWait
|
|
|
|
from selenium.webdriver.support import expected_conditions as EC
|
2023-08-25 07:41:32 +03:00
|
|
|
|
2023-10-23 00:53:18 +03:00
|
|
|
driver = get_browser()
|
|
|
|
except ImportError:
|
|
|
|
return
|
2023-10-03 23:12:56 +03:00
|
|
|
|
2023-10-23 00:53:18 +03:00
|
|
|
driver.get(f"{cls.url}/")
|
|
|
|
try:
|
|
|
|
WebDriverWait(driver, 1200).until(
|
|
|
|
EC.presence_of_element_located((By.ID, "prompt-textarea"))
|
|
|
|
)
|
|
|
|
javascript = "return (await (await fetch('/api/auth/session')).json())['accessToken']"
|
|
|
|
return driver.execute_script(javascript)
|
|
|
|
finally:
|
|
|
|
driver.close()
|
|
|
|
time.sleep(0.1)
|
|
|
|
driver.quit()
|
|
|
|
loop = get_event_loop()
|
|
|
|
return await loop.run_in_executor(
|
|
|
|
None,
|
|
|
|
browse
|
|
|
|
)
|
2023-08-25 07:41:32 +03:00
|
|
|
|
2023-10-04 00:53:17 +03:00
|
|
|
@classmethod
|
|
|
|
async def fetch_access_token(cls, cookies: dict, proxies: dict = None) -> str:
|
|
|
|
async with StreamSession(proxies=proxies, cookies=cookies, impersonate="chrome107") as session:
|
|
|
|
async with session.get(f"{cls.url}/api/auth/session") as response:
|
|
|
|
response.raise_for_status()
|
|
|
|
auth = await response.json()
|
|
|
|
if "accessToken" in auth:
|
|
|
|
return auth["accessToken"]
|
|
|
|
|
2023-09-05 18:27:24 +03:00
|
|
|
@classmethod
|
2023-09-25 16:52:19 +03:00
|
|
|
async def get_access_token(cls, cookies: dict = None, proxies: dict = None) -> str:
|
2023-09-05 18:27:24 +03:00
|
|
|
if not cls._access_token:
|
2023-08-28 02:43:45 +03:00
|
|
|
cookies = cookies if cookies else get_cookies("chat.openai.com")
|
2023-10-04 00:53:17 +03:00
|
|
|
if cookies:
|
|
|
|
cls._access_token = await cls.fetch_access_token(cookies, proxies)
|
|
|
|
if not cls._access_token:
|
2023-10-23 00:53:18 +03:00
|
|
|
cls._access_token = await cls.browse_access_token()
|
2023-10-04 00:53:17 +03:00
|
|
|
if not cls._access_token:
|
|
|
|
raise RuntimeError("Read access token failed")
|
2023-09-05 18:27:24 +03:00
|
|
|
return cls._access_token
|
2023-08-28 02:43:45 +03:00
|
|
|
|
2023-08-25 07:41:32 +03:00
|
|
|
@classmethod
|
|
|
|
@property
|
|
|
|
def params(cls):
|
|
|
|
params = [
|
|
|
|
("model", "str"),
|
|
|
|
("messages", "list[dict[str, str]]"),
|
|
|
|
("stream", "bool"),
|
|
|
|
("proxy", "str"),
|
2023-09-05 18:27:24 +03:00
|
|
|
("access_token", "str"),
|
|
|
|
("cookies", "dict[str, str]")
|
2023-08-25 07:41:32 +03:00
|
|
|
]
|
|
|
|
param = ", ".join([": ".join(p) for p in params])
|
2023-10-28 08:21:00 +03:00
|
|
|
return f"g4f.provider.{cls.__name__} supports: ({param})"
|
|
|
|
|
|
|
|
async def get_arkose_token(proxy: str = None) -> str:
|
|
|
|
config = {
|
|
|
|
"pkey": "3D86FBBA-9D22-402A-B512-3420086BA6CC",
|
|
|
|
"surl": "https://tcr9i.chat.openai.com",
|
|
|
|
"headers": {
|
|
|
|
"User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36'
|
|
|
|
},
|
|
|
|
"site": "https://chat.openai.com",
|
|
|
|
}
|
2023-11-11 12:14:39 +03:00
|
|
|
args_for_request = get_values_for_request(config)
|
|
|
|
async with StreamSession(
|
|
|
|
proxies={"https": proxy},
|
|
|
|
impersonate="chrome107",
|
|
|
|
) as session:
|
|
|
|
async with session.post(**args_for_request) as response:
|
|
|
|
response.raise_for_status()
|
|
|
|
decoded_json = await response.json()
|
|
|
|
if "token" in decoded_json:
|
|
|
|
return decoded_json["token"]
|
|
|
|
raise RuntimeError(f"Response: {decoded_json}")
|