Antonio Cheong commited on
Commit
310cf0e
·
unverified ·
1 Parent(s): e1ee3e7

Fix extra parenthesis

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -45,7 +45,7 @@ usage: EdgeGPT.py [-h] [--stream] [--bing-cookie BING_COOKIE]
45
 
46
  options:
47
  -h, --help show this help message and exit
48
- --stream
49
  --bing-cookie BING_COOKIE (Optional)
50
  ```
51
 
@@ -60,7 +60,7 @@ from EdgeGPT import Chatbot
60
 
61
  async def main():
62
  bot = Chatbot()
63
- print((await bot.ask(prompt="Hello world"))
64
  await bot.close()
65
 
66
 
 
45
 
46
  options:
47
  -h, --help show this help message and exit
48
+ --no-stream
49
  --bing-cookie BING_COOKIE (Optional)
50
  ```
51
 
 
60
 
61
  async def main():
62
  bot = Chatbot()
63
+ print(await bot.ask(prompt="Hello world"))
64
  await bot.close()
65
 
66