Files
nanobot/nanobot/__init__.py
T

11 lines
182 B
Python
Raw Normal View History

2026-02-01 07:36:42 +00:00
"""
nanobot - A lightweight AI agent framework
"""
2026-03-27 14:42:19 +00:00
__version__ = "0.1.4.post6"
2026-02-01 07:36:42 +00:00
__logo__ = "🐈"
from nanobot.nanobot import Nanobot, RunResult
__all__ = ["Nanobot", "RunResult"]