starsnatched commited on
Commit
22279f6
·
1 Parent(s): 4beb924

fix: correct path in chat_stream for requirements.txt

Browse files
Files changed (1) hide show
  1. run.py +2 -2
run.py CHANGED
@@ -11,8 +11,8 @@ async def _main() -> None:
11
  # doc_path = chat.upload_document("requirements.txt")
12
  # print("Document uploaded to:", doc_path)
13
  # async for resp in chat.chat_stream("ask how junior agent is doing"):
14
- async for resp in chat.chat_stream("run hello.py"):
15
- # async for resp in chat.chat_stream("add transformers package to requirements.txt."):
16
  print("\n>>>", resp)
17
 
18
 
 
11
  # doc_path = chat.upload_document("requirements.txt")
12
  # print("Document uploaded to:", doc_path)
13
  # async for resp in chat.chat_stream("ask how junior agent is doing"):
14
+ # async for resp in chat.chat_stream("run hello.py"):
15
+ async for resp in chat.chat_stream("add transformers package to /data/requirements.txt."):
16
  print("\n>>>", resp)
17
 
18