Antonio Cheong
commited on
Commit
·
d7360ed
1
Parent(s):
f71f123
Default to stream
Browse files- src/EdgeGPT.py +2 -2
src/EdgeGPT.py
CHANGED
@@ -288,7 +288,7 @@ async def main():
|
|
288 |
await bot.reset()
|
289 |
continue
|
290 |
print("Bot:")
|
291 |
-
if
|
292 |
print(
|
293 |
(await bot.ask(prompt=prompt))["item"]["messages"][1]["adaptiveCards"][
|
294 |
0
|
@@ -320,7 +320,7 @@ if __name__ == "__main__":
|
|
320 |
""",
|
321 |
)
|
322 |
parser = argparse.ArgumentParser()
|
323 |
-
parser.add_argument("--stream", action="store_true")
|
324 |
parser.add_argument("--bing-cookie", type=str, default="")
|
325 |
args = parser.parse_args()
|
326 |
if args.bing_cookie:
|
|
|
288 |
await bot.reset()
|
289 |
continue
|
290 |
print("Bot:")
|
291 |
+
if args.no_stream:
|
292 |
print(
|
293 |
(await bot.ask(prompt=prompt))["item"]["messages"][1]["adaptiveCards"][
|
294 |
0
|
|
|
320 |
""",
|
321 |
)
|
322 |
parser = argparse.ArgumentParser()
|
323 |
+
parser.add_argument("--no-stream", action="store_true")
|
324 |
parser.add_argument("--bing-cookie", type=str, default="")
|
325 |
args = parser.parse_args()
|
326 |
if args.bing_cookie:
|