- Added titles and descriptions to workspace usage, configuration, customization, design principles, installation, integration guide, lead agent, MCP integration, memory system, middleware, quick start, sandbox, skills, subagents, and tools documentation. - Removed outdated API/Gateway reference and concepts glossary pages. - Updated configuration reference to reflect current structure and removed unnecessary sections. - Introduced new model provider documentation for Ark and updated the index page for model providers. - Enhanced tutorials with titles and descriptions for better clarity and navigation.
40 lines
532 B
TypeScript
40 lines
532 B
TypeScript
import type { MetaRecord } from "nextra";
|
|
|
|
const meta: MetaRecord = {
|
|
index: {
|
|
title: "概览",
|
|
},
|
|
introduction: {
|
|
title: "简介",
|
|
},
|
|
harness: {
|
|
title: "DeerFlow Harness",
|
|
},
|
|
application: {
|
|
title: "DeerFlow 应用",
|
|
},
|
|
tutorials: {
|
|
title: "教程",
|
|
},
|
|
reference: {
|
|
title: "参考",
|
|
},
|
|
workspace: {
|
|
type: "page",
|
|
},
|
|
blog: {
|
|
type: "page",
|
|
},
|
|
posts: {
|
|
type: "page",
|
|
},
|
|
login: {
|
|
type: "page",
|
|
},
|
|
setup: {
|
|
type: "page",
|
|
},
|
|
};
|
|
|
|
export default meta;
|