From 3223153e3ecde6410c0e3d3a36e320f893bd1b6a Mon Sep 17 00:00:00 2001 From: jiajiu123 <1771663559@qq.com> Date: Sun, 9 Mar 2025 23:09:02 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=B8=80=E9=94=AE=E8=84=9A=E6=9C=AC?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=AE=B0=E5=BF=86=E5=8F=AF=E8=A7=86=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- run.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/run.py b/run.py index 35f8653b8..5546d1faa 100644 --- a/run.py +++ b/run.py @@ -123,7 +123,6 @@ if __name__ == "__main__": "请输入要进行的操作:\n" "1.首次安装\n" "2.运行麦麦\n" - "3.运行麦麦并启动可视化推理界面\n" ) os.system("cls") if choice == "1": @@ -131,6 +130,9 @@ if __name__ == "__main__": install_mongodb() elif choice == "2": run_maimbot() - elif choice == "3": - run_maimbot() - run_cmd(r"python src\gui\reasoning_gui.py") + choice = input("是否启动推理可视化?(y/N)").upper() + if choice == "Y": + run_cmd(r"python src\gui\reasoning_gui.py") + choice = input("是否启动记忆可视化?(y/N)").upper() + if choice == "Y": + run_cmd(r"python src/plugins/memory_system/memory_manual_build.py")