mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-17 23:51:19 +00:00
9 lines
106 B
Python
9 lines
106 B
Python
"""A simple chatbot."""
|
|
|
|
from . import chat
|
|
from . import memory
|
|
|
|
__all__ = [
|
|
"chat",
|
|
"memory",
|
|
]
|