feature: 对接deer-flow (#27)

feature: 对接deer-flow
This commit is contained in:
hhhhsc701
2025-10-28 16:28:26 +08:00
committed by GitHub
28 changed files with 356 additions and 79 deletions

View File

@@ -40,7 +40,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" />
@@ -232,7 +232,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),
},
{