summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/ChatgptX.py
diff options
context:
space:
mode:
Diffstat (limited to 'g4f/Provider/ChatgptX.py')
-rw-r--r--g4f/Provider/ChatgptX.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/g4f/Provider/ChatgptX.py b/g4f/Provider/ChatgptX.py
index 8052f65b..9a8711b9 100644
--- a/g4f/Provider/ChatgptX.py
+++ b/g4f/Provider/ChatgptX.py
@@ -35,14 +35,15 @@ class ChatgptX(AsyncGeneratorProvider):
async with ClientSession(headers=headers) as session:
async with session.get(f"{cls.url}/", proxy=proxy) as response:
response = await response.text()
- result = re.search(r'<meta name="csrf-token" content="(.*?)"', response)
- if result:
+ if result := re.search(
+ r'<meta name="csrf-token" content="(.*?)"', response
+ ):
csrf_token = result.group(1)
- result = re.search(r"openconversions\('(.*?)'\)", response)
- if result:
+ if result := re.search(r"openconversions\('(.*?)'\)", response):
chat_id = result.group(1)
- result = re.search(r'<input type="hidden" id="user_id" value="(.*?)"', response)
- if result:
+ if result := re.search(
+ r'<input type="hidden" id="user_id" value="(.*?)"', response
+ ):
user_id = result.group(1)
if not csrf_token or not chat_id or not user_id:
@@ -63,7 +64,7 @@ class ChatgptX(AsyncGeneratorProvider):
'x-csrf-token': csrf_token,
'x-requested-with': 'XMLHttpRequest'
}
- async with session.post(cls.url + '/sendchat', data=data, headers=headers, proxy=proxy) as response:
+ async with session.post(f'{cls.url}/sendchat', data=data, headers=headers, proxy=proxy) as response:
response.raise_for_status()
chat = await response.json()
if "response" not in chat or not chat["response"]: