mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-22 13:44:46 +08:00
22 lines
727 B
TypeScript
22 lines
727 B
TypeScript
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { MultiAgentVisualization } from "./multi-agent-visualization";
|
|
import { SectionHeader } from "./section-header";
|
|
|
|
export function MultiAgentSection() {
|
|
return (
|
|
<section className="relative flex w-full flex-col items-center justify-center">
|
|
<SectionHeader
|
|
title="Multi-Agent Architecture"
|
|
description="Experience the agent teamwork with our Supervisor + Handoffs design pattern."
|
|
/>
|
|
<div className="flex h-[70vh] w-full flex-col items-center justify-center">
|
|
<div className="h-full w-full">
|
|
<MultiAgentVisualization />
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|