Antonio Cheong commited on
Commit
ccd7677
·
1 Parent(s): 17e522d

Reconnect for each message (faster speed)

Browse files
Files changed (1) hide show
  1. src/EdgeGPT.py +12 -47
src/EdgeGPT.py CHANGED
@@ -137,75 +137,50 @@ class ChatHub:
137
  Chat API
138
  """
139
 
140
- def __init__(self) -> None:
141
- self.wss: websockets.WebSocketClientProtocol
142
  self.request: ChatHubRequest
143
  self.loop: bool
144
  self.task: asyncio.Task
145
-
146
- self.pause = False
147
- self.pause_ping = False
148
-
149
- async def init(self, conversation: Conversation) -> None:
150
- """
151
- Separate initialization to allow async
152
- """
153
- self.wss = await websockets.connect("wss://sydney.bing.com/sydney/ChatHub")
154
  self.request = ChatHubRequest(
155
  conversation_signature=conversation.struct["conversationSignature"],
156
  client_id=conversation.struct["clientId"],
157
  conversation_id=conversation.struct["conversationId"],
158
  )
159
- self.loop = True
160
- await self.__initial_handshake()
161
-
162
- # Make async ping loop (long running)
163
- self.task = asyncio.create_task(self.__ping())
164
 
165
  async def ask(self, prompt: str) -> dict:
166
  """
167
  Ask a question to the bot
168
  """
 
 
 
 
 
 
 
 
169
  # Construct a ChatHub request
170
  self.request.update(prompt=prompt)
171
  # Send request
172
- self.pause_ping = True
173
  await self.wss.send(append_identifier(self.request.struct))
174
  while True:
175
- if self.pause:
176
- await asyncio.sleep(0.2)
177
- continue
178
  objects = str(await self.wss.recv()).split("")
179
  for obj in objects:
180
  if obj is None or obj == "":
181
  continue
182
  response = json.loads(obj)
183
  if response.get("type") == 2:
184
- self.pause_ping = False
185
  return response
186
- self.pause_ping = False
187
 
188
  async def __initial_handshake(self):
189
  await self.wss.send(append_identifier({"protocol": "json", "version": 1}))
190
  await self.wss.recv()
191
- await self.wss.send(append_identifier({"type": 6}))
192
- await self.wss.recv()
193
-
194
- async def __ping(self):
195
- while self.loop:
196
- await asyncio.sleep(5)
197
- if self.pause_ping:
198
- continue
199
- self.pause = True
200
- await self.wss.send(append_identifier({"type": 6}))
201
- await self.wss.recv()
202
- self.pause = False
203
 
204
  async def close(self):
205
  """
206
  Close the connection
207
  """
208
- self.loop = False
209
  await self.wss.close()
210
  self.task.cancel()
211
 
@@ -216,16 +191,7 @@ class Chatbot:
216
  """
217
 
218
  def __init__(self) -> None:
219
- self.conversation: Conversation
220
- self.chat_hub: ChatHub
221
-
222
- async def start(self) -> None:
223
- """
224
- Separate initialization to allow async
225
- """
226
- self.conversation = Conversation()
227
- self.chat_hub = ChatHub()
228
- await self.chat_hub.init(conversation=self.conversation)
229
 
230
  async def ask(self, prompt: str) -> dict:
231
  """
@@ -244,7 +210,7 @@ class Chatbot:
244
  Reset the conversation
245
  """
246
  await self.close()
247
- await self.start()
248
 
249
 
250
  def get_input(prompt):
@@ -277,7 +243,6 @@ async def main():
277
  """
278
  print("Initializing...")
279
  bot = Chatbot()
280
- await bot.start()
281
  while True:
282
  prompt = get_input("\nYou:\n")
283
  if prompt == "!exit":
 
137
  Chat API
138
  """
139
 
140
+ def __init__(self, conversation: Conversation) -> None:
141
+ self.wss: websockets.WebSocketClientProtocol = None
142
  self.request: ChatHubRequest
143
  self.loop: bool
144
  self.task: asyncio.Task
 
 
 
 
 
 
 
 
 
145
  self.request = ChatHubRequest(
146
  conversation_signature=conversation.struct["conversationSignature"],
147
  client_id=conversation.struct["clientId"],
148
  conversation_id=conversation.struct["conversationId"],
149
  )
 
 
 
 
 
150
 
151
  async def ask(self, prompt: str) -> dict:
152
  """
153
  Ask a question to the bot
154
  """
155
+ # Check if websocket is closed
156
+ if self.wss:
157
+ if self.wss.closed:
158
+ self.wss = await websockets.connect("wss://sydney.bing.com/sydney/ChatHub")
159
+ await self.__initial_handshake()
160
+ else:
161
+ self.wss = await websockets.connect("wss://sydney.bing.com/sydney/ChatHub")
162
+ await self.__initial_handshake()
163
  # Construct a ChatHub request
164
  self.request.update(prompt=prompt)
165
  # Send request
 
166
  await self.wss.send(append_identifier(self.request.struct))
167
  while True:
 
 
 
168
  objects = str(await self.wss.recv()).split("")
169
  for obj in objects:
170
  if obj is None or obj == "":
171
  continue
172
  response = json.loads(obj)
173
  if response.get("type") == 2:
 
174
  return response
 
175
 
176
  async def __initial_handshake(self):
177
  await self.wss.send(append_identifier({"protocol": "json", "version": 1}))
178
  await self.wss.recv()
 
 
 
 
 
 
 
 
 
 
 
 
179
 
180
  async def close(self):
181
  """
182
  Close the connection
183
  """
 
184
  await self.wss.close()
185
  self.task.cancel()
186
 
 
191
  """
192
 
193
  def __init__(self) -> None:
194
+ self.chat_hub: ChatHub = ChatHub(Conversation())
 
 
 
 
 
 
 
 
 
195
 
196
  async def ask(self, prompt: str) -> dict:
197
  """
 
210
  Reset the conversation
211
  """
212
  await self.close()
213
+ self.chat_hub = ChatHub(Conversation())
214
 
215
 
216
  def get_input(prompt):
 
243
  """
244
  print("Initializing...")
245
  bot = Chatbot()
 
246
  while True:
247
  prompt = get_input("\nYou:\n")
248
  if prompt == "!exit":