Antonio Cheong commited on
Commit
e6fd6e9
·
1 Parent(s): 41a5bc2

Remove unsupported field

Browse files
Files changed (1) hide show
  1. src/EdgeGPT.py +2 -1
src/EdgeGPT.py CHANGED
@@ -93,7 +93,7 @@ class Conversation:
93
  # Build request
94
  headers = {
95
  "accept": "application/json",
96
- "accept-encoding": "gzip, deflate, br",
97
  "accept-language": "en-US,en;q=0.9",
98
  "content-type": "application/json",
99
  "sec-ch-ua": '"Microsoft Edge";v="111", "Not(A:Brand";v="8", "Chromium";v="111"',
@@ -194,6 +194,7 @@ class ChatHub:
194
  if not self.wss.closed:
195
  await self.wss.close()
196
 
 
197
  class Chatbot:
198
  """
199
  Combines everything to make it seamless
 
93
  # Build request
94
  headers = {
95
  "accept": "application/json",
96
+ "accept-encoding": "gzip, deflate",
97
  "accept-language": "en-US,en;q=0.9",
98
  "content-type": "application/json",
99
  "sec-ch-ua": '"Microsoft Edge";v="111", "Not(A:Brand";v="8", "Chromium";v="111"',
 
194
  if not self.wss.closed:
195
  await self.wss.close()
196
 
197
+
198
  class Chatbot:
199
  """
200
  Combines everything to make it seamless