minchyeom commited on
Commit
b9049da
·
1 Parent(s): 5d35005

Update chat stream message to inquire about junior agent status

Browse files
Files changed (1) hide show
  1. run.py +1 -1
run.py CHANGED
@@ -9,7 +9,7 @@ from src.vm import VMRegistry
9
  async def _main() -> None:
10
  async with TeamChatSession(user="demo_user", session="demo_session") as chat:
11
  # doc_path = chat.upload_document("note.pdf")
12
- async for resp in chat.chat_stream("using python, execute a code to remind me in 30 seconds to take a break."):
13
  print("\n>>>", resp)
14
 
15
 
 
9
  async def _main() -> None:
10
  async with TeamChatSession(user="demo_user", session="demo_session") as chat:
11
  # doc_path = chat.upload_document("note.pdf")
12
+ async for resp in chat.chat_stream("ask how junior agent is doing"):
13
  print("\n>>>", resp)
14
 
15