diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-05-30 08:41:56 -0400 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-05-30 08:41:56 -0400 |
commit | 7ac9e5f57c566e3cf2979bac3df4999427538a54 (patch) | |
tree | 6377061812a483aca3bfc3d9618228c6d45a2ec0 /docs/sidebars.js | |
parent | 636fdb176c77297e608a7153f0ab670f71be3434 (diff) | |
download | sncontinue-7ac9e5f57c566e3cf2979bac3df4999427538a54.tar.gz sncontinue-7ac9e5f57c566e3cf2979bac3df4999427538a54.tar.bz2 sncontinue-7ac9e5f57c566e3cf2979bac3df4999427538a54.zip |
rename agent to autopilot
Diffstat (limited to 'docs/sidebars.js')
-rw-r--r-- | docs/sidebars.js | 51 |
1 files changed, 25 insertions, 26 deletions
diff --git a/docs/sidebars.js b/docs/sidebars.js index befe4feb..d2c91388 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -13,41 +13,40 @@ /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ const sidebars = { - docsSidebar: [ - 'intro', - 'getting-started', - 'install', - 'how-continue-works', + "intro", + "getting-started", + "install", + "how-continue-works", { - type: 'category', - label: 'Walkthroughs', + type: "category", + label: "Walkthroughs", items: [ - 'walkthroughs/use-the-gui', - 'walkthroughs/use-a-recipe', - 'walkthroughs/create-a-recipe', - 'walkthroughs/share-a-recipe', + "walkthroughs/use-the-gui", + "walkthroughs/use-a-recipe", + "walkthroughs/create-a-recipe", + "walkthroughs/share-a-recipe", ], }, { - type: 'category', - label: 'Concepts', + type: "category", + label: "Concepts", items: [ - 'concepts/agent', - 'concepts/core', - 'concepts/gui', - 'concepts/history', - 'concepts/ide', - 'concepts/llm', - 'concepts/policy', - 'concepts/recipe', - 'concepts/sdk', - 'concepts/step', + "concepts/autopilot", + "concepts/core", + "concepts/gui", + "concepts/history", + "concepts/ide", + "concepts/llm", + "concepts/policy", + "concepts/recipe", + "concepts/sdk", + "concepts/step", ], }, - 'sdk', - 'telemetry', + "sdk", + "telemetry", ], }; -module.exports = sidebars;
\ No newline at end of file +module.exports = sidebars; |