/** * Creating a sidebar enables you to: - create an ordered group of docs - render a sidebar for each doc of that group - provide next/previous navigation The sidebars can be generated from the filesystem, or explicitly defined here. Create as many sidebars as you want. */ // @ts-check /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ const sidebars = { sidebar: [ "intro", { type: "category", label: "Guides", link: { type: "doc", id: "guides/README", }, items: [ "guides/guidelines", "guides/examples", { type: "doc", id: "guides/developers", label: "Developers", }, ], }, { type: "category", label: "Architecture", link: { type: "doc", id: "architecture/README", }, items: [ "architecture/inference", { type: "doc", id: "architecture/inference", }, ], }, { type: "category", label: "Plugins", link: { type: "doc", id: "plugins/README", }, items: ["plugins/getting-started", "plugins/list"], }, { type: "category", label: "Tasks", link: { type: "doc", id: "tasks/README", }, items: [ "tasks/label_assistant_reply", "tasks/label_prompter_reply", "tasks/reply_as_assistant", "tasks/reply_as_user", "tasks/rank_assistant_replies", ], }, { type: "category", label: "Data", link: { type: "doc", id: "data/README", }, items: [ "data/schemas", "data/datasets", "data/augmentation", "data/supervised-datasets", ], }, { type: "category", label: "Research", link: { type: "doc", id: "research/README", }, items: ["research/general", "research/search-based-qa"], }, { type: "doc", label: "Presentations", id: "presentations/README", }, { type: "doc", label: "FAQ", id: "faq", }, ], }; module.exports = sidebars;