d71b452a34
Agent-Logs-Url: https://github.com/bytedance/deer-flow/sessions/ff389ed8-31c9-430c-85ff-cc1b52b8239c Co-authored-by: foreleven <4785594+foreleven@users.noreply.github.com>
49 lines
747 B
TypeScript
49 lines
747 B
TypeScript
import type { MetaRecord } from "nextra";
|
|
|
|
const meta: MetaRecord = {
|
|
index: {
|
|
title: "Install",
|
|
},
|
|
"quick-start": {
|
|
title: "Quick Start",
|
|
},
|
|
"design-principles": {
|
|
title: "Design Principles",
|
|
},
|
|
"lead-agent": {
|
|
title: "Lead Agent",
|
|
},
|
|
middlewares: {
|
|
title: "Middlewares",
|
|
},
|
|
configuration: {
|
|
title: "Configuration",
|
|
},
|
|
memory: {
|
|
title: "Memory",
|
|
},
|
|
tools: {
|
|
title: "Tools",
|
|
},
|
|
skills: {
|
|
title: "Skills",
|
|
},
|
|
sandbox: {
|
|
title: "Sandbox",
|
|
},
|
|
subagents: {
|
|
title: "Subagents",
|
|
},
|
|
mcp: {
|
|
title: "MCP Integration",
|
|
},
|
|
customization: {
|
|
title: "Customization",
|
|
},
|
|
"integration-guide": {
|
|
title: "Integration Guide",
|
|
},
|
|
};
|
|
|
|
export default meta;
|