Spaces:
Runtime error
Runtime error
refactor(run): comment out document upload functionality in main
Browse files
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!'."):
|