From 3d59ab8108057ef33b8aa4e4d078f6bf29528d47 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Sat, 29 Mar 2025 19:17:56 +0800 Subject: [PATCH] fix: conversation and tool use page refresh 404 --- astrbot/dashboard/routes/static_file.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/astrbot/dashboard/routes/static_file.py b/astrbot/dashboard/routes/static_file.py index 7a673fd15..5d4c05c6b 100644 --- a/astrbot/dashboard/routes/static_file.py +++ b/astrbot/dashboard/routes/static_file.py @@ -20,6 +20,8 @@ class StaticFileRoute(Route): "/providers", "/about", "/extension-marketplace", + "/conversation", + "/tool-use" ] for i in index_: self.app.add_url_rule(i, view_func=self.index)