minchyeom commited on
Commit
22fb7d5
·
1 Parent(s): d03e0a7

refactor(run): comment out document upload functionality in main

Browse files
Files changed (1) hide show
  1. run.py +1 -1
run.py CHANGED
@@ -8,7 +8,7 @@ from src.vm import VMRegistry
8
 
9
  async def _main() -> None:
10
  async with ChatSession(user="demo_user", session="demo_session") as chat:
11
- doc_path = chat.upload_document("note.pdf")
12
  # print(f"Document uploaded to VM at: {doc_path}")
13
  # async for resp in chat.chat_stream("Erase the contents of test.txt and write 'Hello, World!' to it."):
14
  # async for resp in chat.chat_stream("Verify that the file test.txt exists and contains the text 'Hello, World!'."):
 
8
 
9
  async def _main() -> None:
10
  async with ChatSession(user="demo_user", session="demo_session") as chat:
11
+ # doc_path = chat.upload_document("note.pdf")
12
  # print(f"Document uploaded to VM at: {doc_path}")
13
  # async for resp in chat.chat_stream("Erase the contents of test.txt and write 'Hello, World!' to it."):
14
  # async for resp in chat.chat_stream("Verify that the file test.txt exists and contains the text 'Hello, World!'."):