mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-04-04 18:32:44 +00:00
11 lines
182 B
Python
11 lines
182 B
Python
"""
|
|
nanobot - A lightweight AI agent framework
|
|
"""
|
|
|
|
__version__ = "0.1.4.post6"
|
|
__logo__ = "🐈"
|
|
|
|
from nanobot.nanobot import Nanobot, RunResult
|
|
|
|
__all__ = ["Nanobot", "RunResult"]
|