From 86d907dade4997e501b0edfb87e9e90f22007e93 Mon Sep 17 00:00:00 2001 From: hp256 <971748116@qq.com> Date: Tue, 30 May 2023 08:33:44 +0800 Subject: Parameter addition uuid --- gpt4free/gptworldAi/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gpt4free/gptworldAi/__init__.py b/gpt4free/gptworldAi/__init__.py index a729fdf8..e7f76c61 100644 --- a/gpt4free/gptworldAi/__init__.py +++ b/gpt4free/gptworldAi/__init__.py @@ -6,6 +6,7 @@ @IDE :PyCharm """ import json +import uuid import random import binascii import requests @@ -30,7 +31,8 @@ class ChatCompletion: "presence_penalty": 0, "temperature": 1, "top_p": 1, - "stream": True + "stream": True, + "uuid": str(uuid.uuid4()) }) signature = ChatCompletion.encrypt(data) res = requests.post(url, headers=headers, data=json.dumps({"signature": signature}), proxies=proxies,stream=True) -- cgit v1.2.3