fix typo in payload

This commit is contained in:
st4rted 2023-10-01 19:55:27 -04:00 committed by GitHub
parent 423485fda6
commit 3485e357ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,7 @@ f = function () {
"tryit-" + h + "-" + f(agent + f(agent + f(agent + h + "x")));
"""
payload = {"chas_style": "chat", "chatHistory": json.dumps(messages)}
payload = {"chat_style": "chat", "chatHistory": json.dumps(messages)}
api_key = js2py.eval_js(token_js)
headers = {
"api-key": api_key,
@ -60,4 +60,4 @@ f = function () {
response.raise_for_status()
async for stream in response.content.iter_any():
if stream:
yield stream.decode()
yield stream.decode()