summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gpt4free/gptworldAi/__init__.py4
1 files changed, 3 insertions, 1 deletions
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)