Merge pull request #286 from langflow-ai/docs-flatten-nav

docs: flatten nav
This commit is contained in:
Mendon Kissling 2025-10-24 09:49:25 -04:00 committed by GitHub
commit 2cc01104e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 48 additions and 72 deletions

View file

@ -1,5 +1,5 @@
--- ---
title: Langflow Agents title: Langflow in OpenRAG
slug: /agents slug: /agents
--- ---

View file

@ -1,5 +1,5 @@
--- ---
title: Docling Ingestion title: Docling in OpenRAG
slug: /ingestion slug: /ingestion
--- ---

View file

@ -1,5 +1,5 @@
--- ---
title: OpenSearch Knowledge title: OpenSearch in OpenRAG
slug: /knowledge slug: /knowledge
--- ---

View file

@ -1,5 +1,5 @@
--- ---
title: Install with Docker title: Install OpenRAG containers
slug: /get-started/docker slug: /get-started/docker
--- ---

View file

@ -1,5 +1,5 @@
--- ---
title: Install OpenRAG title: Install OpenRAG with TUI
slug: /install slug: /install
--- ---

View file

@ -1,5 +1,5 @@
--- ---
title: Troubleshoot title: Troubleshooting
slug: /support/troubleshoot slug: /support/troubleshoot
--- ---

View file

@ -16,10 +16,6 @@
*/ */
const sidebars = { const sidebars = {
tutorialSidebar: [ tutorialSidebar: [
{
type: "category",
label: "Get Started",
items: [
{ {
type: "doc", type: "doc",
id: "get-started/what-is-openrag", id: "get-started/what-is-openrag",
@ -28,12 +24,12 @@ const sidebars = {
{ {
type: "doc", type: "doc",
id: "get-started/install", id: "get-started/install",
label: "Install OpenRAG" label: "Install OpenRAG with TUI"
}, },
{ {
type: "doc", type: "doc",
id: "get-started/docker", id: "get-started/docker",
label: "Install with Docker" label: "Install OpenRAG containers"
}, },
{ {
type: "doc", type: "doc",
@ -45,50 +41,30 @@ const sidebars = {
id: "get-started/tui", id: "get-started/tui",
label: "Terminal User Interface (TUI)" label: "Terminal User Interface (TUI)"
}, },
],
},
{
type: "category",
label: "Core components",
items: [
{ {
type: "doc", type: "doc",
id: "core-components/agents", id: "core-components/agents",
label: "Langflow Agents" label: "Langflow in OpenRAG"
}, },
{ {
type: "doc", type: "doc",
id: "core-components/knowledge", id: "core-components/knowledge",
label: "OpenSearch Knowledge" label: "OpenSearch in OpenRAG"
}, },
{ {
type: "doc", type: "doc",
id: "core-components/ingestion", id: "core-components/ingestion",
label: "Docling Ingestion" label: "Docling in OpenRAG"
}
],
}, },
{
type: "category",
label: "Reference",
items: [
{ {
type: "doc", type: "doc",
id: "reference/configuration", id: "reference/configuration",
label: "Environment variables" label: "Environment variables"
}, },
],
},
{
type: "category",
label: "Support",
items: [
{ {
type: "doc", type: "doc",
id: "support/troubleshoot", id: "support/troubleshoot",
label: "Troubleshoot" label: "Troubleshooting"
},
],
}, },
], ],
}; };