langchain/docs/docs_skeleton/sidebars.js

105 lines
2.6 KiB
JavaScript
Raw Normal View History

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
/**
* 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.
*/
module.exports = {
// By default, Docusaurus generates a sidebar from the docs folder structure
2023-07-21 20:52:03 +00:00
docs: [
{
type: "category",
label: "Get started",
collapsed: false,
collapsible: false,
items: [{ type: "autogenerated", dirName: "get_started" }],
link: {
type: 'generated-index',
description: 'Get started with LangChain',
2023-07-21 20:52:03 +00:00
slug: "get_started",
},
},
{
type: "category",
label: "Modules",
collapsed: false,
collapsible: false,
items: [{ type: "autogenerated", dirName: "modules" } ],
link: {
type: 'doc',
id: "modules/index"
},
},
{
type: "category",
2023-09-01 15:20:55 +00:00
label: "LangChain Expression Language",
collapsed: true,
2023-09-01 15:20:55 +00:00
items: [{ type: "autogenerated", dirName: "expression_language" } ],
link: {
2023-09-01 15:20:55 +00:00
type: 'doc',
id: "expression_language/index"
},
},
{
type: "category",
2023-09-01 15:20:55 +00:00
label: "Guides",
collapsed: true,
2023-09-01 15:20:55 +00:00
items: [{ type: "autogenerated", dirName: "guides" }],
link: {
type: 'generated-index',
2023-09-01 15:20:55 +00:00
description: 'Design guides for key parts of the development process',
slug: "guides",
},
},
{
type: "category",
label: "Additional resources",
collapsed: true,
items: [{ type: "autogenerated", dirName: "additional_resources" }, { type: "link", label: "Gallery", href: "https://github.com/kyrolabs/awesome-langchain" }],
link: {
type: 'generated-index',
2023-09-01 15:20:55 +00:00
slug: "additional_resources",
},
},
'community'
2023-07-21 20:52:03 +00:00
],
integrations: [
{
2023-07-21 20:52:03 +00:00
type: "category",
label: "Integrations",
collapsible: false,
items: [{ type: "autogenerated", dirName: "integrations" }],
link: {
type: 'generated-index',
slug: "integrations",
},
},
2023-07-21 20:52:03 +00:00
],
use_cases: [
{
2023-07-21 20:52:03 +00:00
type: "category",
label: "Use cases",
collapsible: false,
items: [{ type: "autogenerated", dirName: "use_cases" }],
link: {
type: 'generated-index',
slug: "use_cases",
},
},
],
};