ReMe/reme/agent/__init__.py

9 lines
106 B
Python

"""A simple chatbot."""
from . import chat
from . import memory
__all__ = [
"chat",
"memory",
]