mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-05 08:06:15 +00:00
14 lines
222 B
Python
14 lines
222 B
Python
import fire
|
|
|
|
from chat.memory_chat import MemoryChat
|
|
from config import init
|
|
|
|
|
|
def main(config_path:str):
|
|
init(config_path)
|
|
|
|
agent = MemoryChat()
|
|
agent.run()
|
|
|
|
if __name__ == "__main__":
|
|
fire.Fire(main)
|