minchyeom commited on
Commit
66327b5
·
1 Parent(s): 2afcf85

Update command in chat session to check running processes

Browse files
Files changed (1) hide show
  1. run.py +1 -1
run.py CHANGED
@@ -8,7 +8,7 @@ from src.chat import ChatSession
8
  async def _main() -> None:
9
  async with ChatSession(user="demo_user", session="demo_session") as chat:
10
  answer = await chat.chat(
11
- "Execute this command: echo Hello from the VM"
12
  )
13
  print("\n>>>", answer)
14
 
 
8
  async def _main() -> None:
9
  async with ChatSession(user="demo_user", session="demo_session") as chat:
10
  answer = await chat.chat(
11
+ "check the processes running on the system"
12
  )
13
  print("\n>>>", answer)
14