nanobot/nanobot/__init__.py
2026-04-06 11:26:07 +00:00

11 lines
176 B
Python

"""
nanobot - A lightweight AI agent framework
"""
__version__ = "0.1.5"
__logo__ = "🐈"
from nanobot.nanobot import Nanobot, RunResult
__all__ = ["Nanobot", "RunResult"]