Antonio Cheong commited on
Commit
e097d14
·
1 Parent(s): bf42215

Feat: Reset conversation

Browse files
Files changed (3) hide show
  1. README.md +84 -1
  2. example.env +1 -0
  3. src/BingGPT.py +28 -7
README.md CHANGED
@@ -1 +1,84 @@
1
- # Hello world
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Bing GPT
2
+ ChatGPT with internet access
3
+
4
+ ## Requirements
5
+ - A Microsoft Account with early access to http://bing.com/chat
6
+ - Microsoft Edge
7
+
8
+ ## Setup
9
+ ### Checking access
10
+ - Install the latest version of Microsoft Edge
11
+ - Open http://bing.com/chat
12
+ - If you see a chat feature, you are good to go
13
+
14
+ ### Getting authentication
15
+ - Open the developer tools (F12)
16
+ - Go to the Application tab → Storage → Cookies
17
+ - Find the cookie named "_U"
18
+ - Copy the value of the cookie
19
+ - Method 1
20
+ - `export BING_U="<COOKIE_VALUE>"`
21
+ - Method 2
22
+ - Use it as command line argument later
23
+
24
+ ## Installation
25
+ - `python3 -m pip install BingGPT`
26
+
27
+ ## Demo usage
28
+ - If `BING_U` in environment variables: `python3 -m BingGPT`
29
+ - Else: `python3 -m BingGPT "<COOKIE_VALUE>"`
30
+
31
+ ## Developer
32
+ Use Async for the best experience
33
+
34
+ ```python
35
+ import asyncio
36
+ from BingGPT import Chatbot
37
+
38
+ async def main():
39
+ """
40
+ Main function
41
+ """
42
+ print("Initializing...")
43
+ bot = Chatbot()
44
+ await bot.start()
45
+ while True:
46
+ prompt = input("\nYou:\n")
47
+ if prompt == "!exit":
48
+ break
49
+ elif prompt == "!help":
50
+ print("""
51
+ !help - Show this help message
52
+ !exit - Exit the program
53
+ !reset - Reset the conversation
54
+ """)
55
+ continue
56
+ elif prompt == "!reset":
57
+ await bot.reset()
58
+ continue
59
+ print("Bot:")
60
+ print((await bot.ask(prompt=prompt))["item"]["messages"][1]["text"])
61
+ await bot.close()
62
+
63
+
64
+ if __name__ == "__main__":
65
+ print(
66
+ """
67
+ BingGPT - A demo of reverse engineering the Bing GPT chatbot
68
+ Repo: github.com/acheong08/BingGPT
69
+ By: Antonio Cheong
70
+
71
+ !help for help
72
+
73
+ Type !exit to exit
74
+ Enter twice to send message
75
+ """
76
+ )
77
+ asyncio.run(main())
78
+
79
+
80
+ ```
81
+
82
+ ## Work in progress
83
+ - Response streaming (Easily achievable)
84
+ - Error handling
example.env ADDED
@@ -0,0 +1 @@
 
 
1
+ export BING_U="<COOKIE_VALUE>"
src/BingGPT.py CHANGED
@@ -5,6 +5,7 @@ import asyncio
5
  import json
6
  import os
7
  import uuid
 
8
 
9
  import requests
10
  import websockets.client as websockets
@@ -113,7 +114,7 @@ class Conversation:
113
  }
114
  # Create cookies
115
  cookies = {
116
- "_U": os.environ.get("BING_U"),
117
  }
118
  # Send GET request
119
  response = requests.get(
@@ -201,7 +202,7 @@ class Chatbot:
201
  self.conversation: Conversation
202
  self.chat_hub: ChatHub
203
 
204
- async def a_start(self) -> None:
205
  """
206
  Separate initialization to allow async
207
  """
@@ -209,17 +210,25 @@ class Chatbot:
209
  self.chat_hub = ChatHub()
210
  await self.chat_hub.init(conversation=self.conversation)
211
 
212
- async def a_ask(self, prompt: str) -> str:
213
  """
214
  Ask a question to the bot
215
  """
216
  return await self.chat_hub.ask(prompt=prompt)
217
 
218
- async def a_close(self):
219
  """
220
  Close the connection
221
  """
222
  await self.chat_hub.close()
 
 
 
 
 
 
 
 
223
 
224
 
225
  def get_input(prompt):
@@ -252,14 +261,24 @@ async def main():
252
  """
253
  print("Initializing...")
254
  bot = Chatbot()
255
- await bot.a_start()
256
  while True:
257
  prompt = get_input("\nYou:\n")
258
  if prompt == "!exit":
259
  break
 
 
 
 
 
 
 
 
 
 
260
  print("Bot:")
261
- print((await bot.a_ask(prompt=prompt))["item"]["messages"][1]["text"])
262
- await bot.a_close()
263
 
264
 
265
  if __name__ == "__main__":
@@ -269,6 +288,8 @@ if __name__ == "__main__":
269
  Repo: github.com/acheong08/BingGPT
270
  By: Antonio Cheong
271
 
 
 
272
  Type !exit to exit
273
  Enter twice to send message
274
  """
 
5
  import json
6
  import os
7
  import uuid
8
+ import sys
9
 
10
  import requests
11
  import websockets.client as websockets
 
114
  }
115
  # Create cookies
116
  cookies = {
117
+ "_U": os.environ.get("BING_U") or sys.argv[1],
118
  }
119
  # Send GET request
120
  response = requests.get(
 
202
  self.conversation: Conversation
203
  self.chat_hub: ChatHub
204
 
205
+ async def start(self) -> None:
206
  """
207
  Separate initialization to allow async
208
  """
 
210
  self.chat_hub = ChatHub()
211
  await self.chat_hub.init(conversation=self.conversation)
212
 
213
+ async def ask(self, prompt: str) -> str:
214
  """
215
  Ask a question to the bot
216
  """
217
  return await self.chat_hub.ask(prompt=prompt)
218
 
219
+ async def close(self):
220
  """
221
  Close the connection
222
  """
223
  await self.chat_hub.close()
224
+
225
+ async def reset(self):
226
+ """
227
+ Reset the conversation
228
+ """
229
+ await self.close()
230
+ await self.start()
231
+
232
 
233
 
234
  def get_input(prompt):
 
261
  """
262
  print("Initializing...")
263
  bot = Chatbot()
264
+ await bot.start()
265
  while True:
266
  prompt = get_input("\nYou:\n")
267
  if prompt == "!exit":
268
  break
269
+ elif prompt == "!help":
270
+ print("""
271
+ !help - Show this help message
272
+ !exit - Exit the program
273
+ !reset - Reset the conversation
274
+ """)
275
+ continue
276
+ elif prompt == "!reset":
277
+ await bot.reset()
278
+ continue
279
  print("Bot:")
280
+ print((await bot.ask(prompt=prompt))["item"]["messages"][1]["text"])
281
+ await bot.close()
282
 
283
 
284
  if __name__ == "__main__":
 
288
  Repo: github.com/acheong08/BingGPT
289
  By: Antonio Cheong
290
 
291
+ !help for help
292
+
293
  Type !exit to exit
294
  Enter twice to send message
295
  """