BeautyyuYanli Harry commited on
Commit
f33430d
·
unverified ·
1 Parent(s): b467a80

Support conversation style (#100)

Browse files

Co-authored-by: Harry <[email protected]>

Files changed (2) hide show
  1. README.md +6 -4
  2. src/EdgeGPT.py +37 -16
README.md CHANGED
@@ -88,13 +88,15 @@ python3 -m pip install EdgeGPT --upgrade
88
  !help for help
89
 
90
  Type !exit to exit
91
- Enter twice to send message
92
-
93
- usage: EdgeGPT.py [-h] [--no-stream] --cookie-file COOKIE_FILE
94
 
95
  options:
96
  -h, --help show this help message and exit
 
97
  --no-stream
 
98
  --cookie-file COOKIE_FILE
99
  ```
100
 
@@ -130,7 +132,7 @@ from EdgeGPT import Chatbot
130
 
131
  async def main():
132
  bot = Chatbot()
133
- print(await bot.ask(prompt="Hello world"))
134
  await bot.close()
135
 
136
 
 
88
  !help for help
89
 
90
  Type !exit to exit
91
+ Enter twice to send message or set --enter-once to send one line message
92
+
93
+ usage: EdgeGPT.py [-h] [--enter-once] [--no-stream] [--style {creative,balanced,precise}] --cookie-file COOKIE_FILE
94
 
95
  options:
96
  -h, --help show this help message and exit
97
+ --enter-once
98
  --no-stream
99
+ --style {creative,balanced,precise}
100
  --cookie-file COOKIE_FILE
101
  ```
102
 
 
132
 
133
  async def main():
134
  bot = Chatbot()
135
+ print(await bot.ask(prompt="Hello world", conversation_style="creative"))
136
  await bot.close()
137
 
138
 
src/EdgeGPT.py CHANGED
@@ -1,15 +1,15 @@
1
  """
2
  Main.py
3
  """
4
- import argparse
5
- import asyncio
6
- import json
7
  import os
8
- import random
9
  import sys
10
- from typing import Generator
11
- from typing import Optional
12
  import uuid
 
 
 
 
 
13
 
14
  import requests
15
  import websockets.client as websockets
@@ -49,6 +49,12 @@ class NotAllowedToAccess(Exception):
49
  pass
50
 
51
 
 
 
 
 
 
 
52
  def append_identifier(msg: dict) -> str:
53
  """
54
  Appends special character to end of message to identify end of message
@@ -76,7 +82,7 @@ class ChatHubRequest:
76
  self.conversation_signature: str = conversation_signature
77
  self.invocation_id: int = invocation_id
78
 
79
- def update(self, prompt: str, options: list = None) -> None:
80
  """
81
  Updates request object
82
  """
@@ -87,6 +93,14 @@ class ChatHubRequest:
87
  "disable_emoji_spoken_text",
88
  "enablemm",
89
  ]
 
 
 
 
 
 
 
 
90
  self.struct = {
91
  "arguments": [
92
  {
@@ -126,7 +140,8 @@ class Conversation:
126
  "result": {"value": "Success", "message": None},
127
  }
128
  self.session = requests.Session()
129
- self.session.headers.update({"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36"})
 
130
  if cookies is not None:
131
  cookie_file = cookies
132
  else:
@@ -176,7 +191,9 @@ class ChatHub:
176
  conversation_id=conversation.struct["conversationId"],
177
  )
178
 
179
- async def ask_stream(self, prompt: str) -> Generator[str, None, None]:
 
 
180
  """
181
  Ask a question to the bot
182
  """
@@ -189,7 +206,8 @@ class ChatHub:
189
  )
190
  await self.__initial_handshake()
191
  # Construct a ChatHub request
192
- self.request.update(prompt=prompt)
 
193
  # Send request
194
  await self.wss.send(append_identifier(self.request.struct))
195
  final = False
@@ -230,20 +248,20 @@ class Chatbot:
230
  self.chat_hub: ChatHub = ChatHub(
231
  Conversation(self.cookiePath, self.cookies))
232
 
233
- async def ask(self, prompt: str) -> dict:
234
  """
235
  Ask a question to the bot
236
  """
237
- async for final, response in self.chat_hub.ask_stream(prompt=prompt):
238
  if final:
239
  return response
240
  self.chat_hub.wss.close()
241
 
242
- async def ask_stream(self, prompt: str) -> Generator[str, None, None]:
243
  """
244
  Ask a question to the bot
245
  """
246
- async for response in self.chat_hub.ask_stream(prompt=prompt):
247
  yield response
248
 
249
  async def close(self):
@@ -314,13 +332,13 @@ async def main():
314
  print("Bot:")
315
  if args.no_stream:
316
  print(
317
- (await bot.ask(prompt=prompt))["item"]["messages"][1]["adaptiveCards"][
318
  0
319
  ]["body"][0]["text"],
320
  )
321
  else:
322
  wrote = 0
323
- async for final, response in bot.ask_stream(prompt=prompt):
324
  if not final:
325
  print(response[wrote:], end="")
326
  wrote = len(response)
@@ -346,6 +364,8 @@ if __name__ == "__main__":
346
  parser = argparse.ArgumentParser()
347
  parser.add_argument("--enter-once", action="store_true")
348
  parser.add_argument("--no-stream", action="store_true")
 
 
349
  parser.add_argument(
350
  "--cookie-file",
351
  type=str,
@@ -355,4 +375,5 @@ if __name__ == "__main__":
355
  args = parser.parse_args()
356
  os.environ["COOKIE_FILE"] = args.cookie_file
357
  args = parser.parse_args()
 
358
  asyncio.run(main())
 
1
  """
2
  Main.py
3
  """
 
 
 
4
  import os
 
5
  import sys
6
+ import json
 
7
  import uuid
8
+ import random
9
+ import asyncio
10
+ import argparse
11
+ from enum import Enum
12
+ from typing import Generator, Optional
13
 
14
  import requests
15
  import websockets.client as websockets
 
49
  pass
50
 
51
 
52
+ class ConversationStyle(Enum):
53
+ creative = "h3imaginative"
54
+ balanced = "harmonyv3"
55
+ precise = "h3precise"
56
+
57
+
58
  def append_identifier(msg: dict) -> str:
59
  """
60
  Appends special character to end of message to identify end of message
 
82
  self.conversation_signature: str = conversation_signature
83
  self.invocation_id: int = invocation_id
84
 
85
+ def update(self, prompt: str, conversation_style: Optional[ConversationStyle], options: Optional[list] = None) -> None:
86
  """
87
  Updates request object
88
  """
 
93
  "disable_emoji_spoken_text",
94
  "enablemm",
95
  ]
96
+ if conversation_style:
97
+ options = [
98
+ "deepleo",
99
+ "enable_debug_commands",
100
+ "disable_emoji_spoken_text",
101
+ "enablemm",
102
+ conversation_style.value,
103
+ ]
104
  self.struct = {
105
  "arguments": [
106
  {
 
140
  "result": {"value": "Success", "message": None},
141
  }
142
  self.session = requests.Session()
143
+ self.session.headers.update(
144
+ {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36"})
145
  if cookies is not None:
146
  cookie_file = cookies
147
  else:
 
191
  conversation_id=conversation.struct["conversationId"],
192
  )
193
 
194
+ async def ask_stream(
195
+ self, prompt: str, conversation_style: Optional[ConversationStyle] = None
196
+ ) -> Generator[str, None, None]:
197
  """
198
  Ask a question to the bot
199
  """
 
206
  )
207
  await self.__initial_handshake()
208
  # Construct a ChatHub request
209
+ self.request.update(
210
+ prompt=prompt, conversation_style=conversation_style)
211
  # Send request
212
  await self.wss.send(append_identifier(self.request.struct))
213
  final = False
 
248
  self.chat_hub: ChatHub = ChatHub(
249
  Conversation(self.cookiePath, self.cookies))
250
 
251
+ async def ask(self, prompt: str, conversation_style: ConversationStyle = None) -> dict:
252
  """
253
  Ask a question to the bot
254
  """
255
+ async for final, response in self.chat_hub.ask_stream(prompt=prompt, conversation_style=conversation_style):
256
  if final:
257
  return response
258
  self.chat_hub.wss.close()
259
 
260
+ async def ask_stream(self, prompt: str, conversation_style: ConversationStyle = None) -> Generator[str, None, None]:
261
  """
262
  Ask a question to the bot
263
  """
264
+ async for response in self.chat_hub.ask_stream(prompt=prompt, conversation_style=conversation_style):
265
  yield response
266
 
267
  async def close(self):
 
332
  print("Bot:")
333
  if args.no_stream:
334
  print(
335
+ (await bot.ask(prompt=prompt, conversation_style=args.style))["item"]["messages"][1]["adaptiveCards"][
336
  0
337
  ]["body"][0]["text"],
338
  )
339
  else:
340
  wrote = 0
341
+ async for final, response in bot.ask_stream(prompt=prompt, conversation_style=args.style):
342
  if not final:
343
  print(response[wrote:], end="")
344
  wrote = len(response)
 
364
  parser = argparse.ArgumentParser()
365
  parser.add_argument("--enter-once", action="store_true")
366
  parser.add_argument("--no-stream", action="store_true")
367
+ parser.add_argument("--style",
368
+ choices=["creative", "balanced", "precise"], default="balanced")
369
  parser.add_argument(
370
  "--cookie-file",
371
  type=str,
 
375
  args = parser.parse_args()
376
  os.environ["COOKIE_FILE"] = args.cookie_file
377
  args = parser.parse_args()
378
+ args.style = ConversationStyle[args.style]
379
  asyncio.run(main())