From a74d4ae363f0190c9696d1270862585ff54c445f Mon Sep 17 00:00:00 2001 From: hp256 <971748116@qq.com> Date: Tue, 23 May 2023 16:52:00 +0800 Subject: add hpgptai --- gpt4free/hpgptai/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gpt4free/hpgptai/__init__.py b/gpt4free/hpgptai/__init__.py index 66841a87..c8772a19 100644 --- a/gpt4free/hpgptai/__init__.py +++ b/gpt4free/hpgptai/__init__.py @@ -15,12 +15,13 @@ class ChatCompletion: def create( messages: list, context: str="Converse as if you were an AI assistant. Be friendly, creative.", + restNonce:str="9d6d743bd3", proxy:str=None ): url = "https://chatgptlogin.ac/wp-json/ai-chatbot/v1/chat" headers = { "Content-Type": "application/json", - "X-Wp-Nonce": "02244d73c2" + "X-Wp-Nonce": restNonce } proxies = {'http': 'http://' + proxy, 'https': 'http://' + proxy} if proxy else None data = { -- cgit v1.2.3