llmOS-Agent / run.py
minchyeom's picture
Update command in chat session to check running processes
66327b5
raw
history blame
433 Bytes
from __future__ import annotations
import asyncio
from src.chat import ChatSession
async def _main() -> None:
async with ChatSession(user="demo_user", session="demo_session") as chat:
answer = await chat.chat(
"check the processes running on the system"
)
print("\n>>>", answer)
if __name__ == "__main__":
try:
asyncio.run(_main())
except KeyboardInterrupt:
pass