starsnatched commited on
Commit
596848e
·
1 Parent(s): 9448a0a

fix: update chat stream command to look up current weather

Browse files
Files changed (1) hide show
  1. run.py +1 -1
run.py CHANGED
@@ -15,7 +15,7 @@ async def _main() -> None:
15
  # async for resp in chat.chat_stream("Inspect the contents of note.pdf and summarize it."):
16
  # async for resp in chat.chat_stream("What is the content of the document I uploaded?"):
17
  # async for resp in chat.chat_stream("Install necessary package(s) to read PDF files and edit them."):
18
- async for resp in chat.chat_stream("Install sudo and try again."):
19
  print("\n>>>", resp)
20
 
21
 
 
15
  # async for resp in chat.chat_stream("Inspect the contents of note.pdf and summarize it."):
16
  # async for resp in chat.chat_stream("What is the content of the document I uploaded?"):
17
  # async for resp in chat.chat_stream("Install necessary package(s) to read PDF files and edit them."):
18
+ async for resp in chat.chat_stream("Look up the current weather in San Francisco."):
19
  print("\n>>>", resp)
20
 
21