Spaces:
Runtime error
Runtime error
refactor: comment out unused chat_stream query for current date
Browse files
run.py
CHANGED
@@ -12,6 +12,7 @@ async def _main() -> None:
|
|
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("what is in requirements.txt"):
|
16 |
print("\n>>>", resp)
|
17 |
|
|
|
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("what is the current date?"):
|
16 |
async for resp in chat.chat_stream("what is in requirements.txt"):
|
17 |
print("\n>>>", resp)
|
18 |
|