/**
 * 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 = {
  docsSidebar: [
    "intro",
    "quickstart",
    "how-to-use-continue",
    "how-continue-works",
    {
      type: "category",
      label: "🎨 Customization",
      collapsible: true,
      collapsed: true,
      items: [
        "customization/overview",
        "customization/models",
        "customization/context-providers",
        "customization/slash-commands",
        "customization/other-configuration",
      ],
    },
    {
      type: "category",
      label: "🚶 Walkthroughs",
      collapsible: true,
      collapsed: true,
      items: [
        "walkthroughs/codellama",
        "walkthroughs/manually-run-continue",
        "walkthroughs/running-continue-without-internet",
      ],
    },
    "development-data",
    "telemetry",
    "troubleshooting",
    {
      type: "category",
      label: "📖 Reference",
      collapsible: true,
      collapsed: true,
      items: [
        {
          type: "autogenerated",
          dirName: "reference",
        },
      ],
    },
  ],
};

module.exports = sidebars;