llmOS-Agent / run.py
tech-envision
Add database support and persist chat history
bedb8e2
raw
history blame
346 Bytes
from __future__ import annotations
import asyncio
from src.chat import ChatSession
async def _main() -> None:
async with ChatSession() as chat:
answer = await chat.chat("What is 10 + 23?")
print("\n>>>", answer)
if __name__ == "__main__":
try:
asyncio.run(_main())
except KeyboardInterrupt:
pass