mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-21 07:26:50 +00:00
814a488bcb
Agent-Logs-Url: https://github.com/bytedance/deer-flow/sessions/a5f192e7-8034-4e46-af22-60b90ee27d40 Co-authored-by: foreleven <4785594+foreleven@users.noreply.github.com>
28 lines
476 B
TypeScript
28 lines
476 B
TypeScript
import type { MetaRecord } from "nextra";
|
|
|
|
const meta: MetaRecord = {
|
|
index: {
|
|
title: "概览",
|
|
},
|
|
"quick-start": {
|
|
title: "快速上手",
|
|
},
|
|
"deployment-guide": {
|
|
title: "部署指南",
|
|
},
|
|
configuration: {
|
|
title: "配置",
|
|
},
|
|
"workspace-usage": {
|
|
title: "工作区使用",
|
|
},
|
|
"agents-and-threads": {
|
|
title: "Agent 与线程",
|
|
},
|
|
"operations-and-troubleshooting": {
|
|
title: "运维与排障",
|
|
},
|
|
};
|
|
|
|
export default meta;
|