From bf94e5e43fa5edae533a0ce0a29851d3e3f3a5fd Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Mon, 7 Oct 2024 15:14:50 -0400 Subject: [PATCH] x --- docs/docs/{concepts.mdx => concepts/index.mdx} | 9 ++++++++- docs/sidebars.js | 12 +++++++++++- 2 files changed, 19 insertions(+), 2 deletions(-) rename docs/docs/{concepts.mdx => concepts/index.mdx} (99%) diff --git a/docs/docs/concepts.mdx b/docs/docs/concepts/index.mdx similarity index 99% rename from docs/docs/concepts.mdx rename to docs/docs/concepts/index.mdx index 2f48f142976..fa6e7bcf3cf 100644 --- a/docs/docs/concepts.mdx +++ b/docs/docs/concepts/index.mdx @@ -1,9 +1,16 @@ +--- +sidebar_position: 0 +sidebar_class_name: hidden +--- + # Conceptual guide import ThemedImage from '@theme/ThemedImage'; import useBaseUrl from '@docusaurus/useBaseUrl'; -This section contains introductions to key parts of LangChain. +In this section, you'll find explanations of the key concepts, providing a deeper understanding of core principles. + +The conceptual guide will not cover step-by-step instructions or specific implementation details — those are found in the [How-To Guides](/docs/how_to/) and [Tutorials](/docs/tutorials) sections. For detailed reference material, please visit the [API Reference](https://python.langchain.com/api_reference/). ## Architecture diff --git a/docs/sidebars.js b/docs/sidebars.js index af0dae43d9e..324912a43f6 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -47,7 +47,17 @@ module.exports = { className: 'hidden', }], }, - "concepts", + { + type: "category", + link: {type: 'doc', id: 'concepts/index'}, + label: "Conceptual Guide", + collapsible: false, + items: [{ + type: 'autogenerated', + dirName: 'concepts', + className: 'hidden', + }], + }, { type: "category", label: "Ecosystem",