feature: 对接deer-flow

This commit is contained in:
hhhhsc
2025-10-28 10:52:27 +08:00
parent 871ba5758d
commit a69b9f4921
28 changed files with 354 additions and 73 deletions

View File

@@ -41,7 +41,7 @@ export default function WelcomePage() {
使
</span>
<span
onClick={() => navigate("/agent")}
onClick={() => navigate("/chat")}
className="cursor-pointer rounded px-4 py-2 inline-flex items-center bg-gradient-to-r from-purple-600 to-pink-600 hover:from-purple-700 hover:to-pink-700 text-white shadow-lg"
>
<MessageSquare className="mr-2 w-4 h-4" />
@@ -233,7 +233,7 @@ export default function WelcomePage() {
<div className="text-center">
<span
onClick={() => navigate("/agent")}
onClick={() => navigate("/chat")}
className="cursor-pointer rounded px-4 py-2 inline-flex items-center bg-gradient-to-r from-purple-600 to-pink-600 hover:from-purple-700 hover:to-pink-700 text-white shadow-lg"
>
<MessageSquare className="mr-2 w-4 h-4" />

View File

@@ -53,7 +53,7 @@ const router = createBrowserRouter([
Component: withErrorBoundary(Home),
},
{
path: "/agent",
path: "/chat",
Component: withErrorBoundary(AgentPage),
},
{