Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add WIP disclaimers + sidebar update to docs #256

Merged
merged 2 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/docs/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
---
title: Home
---

# MongoDB RAG Framework

:::warning[👷‍♂️ Work In Progress 👷‍♂️]

The MongoDB RAG Framework is under active development
and may undergo breaking changes.

We aim to keep the documentation up to date with the latest version.

:::

Build full stack retrieval augmented generation (RAG) applications using MongoDB
and [Atlas Vector Search](https://www.mongodb.com/docs/atlas/atlas-vector-search/vector-search-overview/).

Expand Down
5 changes: 5 additions & 0 deletions docs/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ const config: Config = {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
},
announcementBar: {
content:
"⚠️ The MongoDB RAG Framework is under active development and may undergo breaking changes. ⚠️",
backgroundColor: "#FFF8E6",
},
} satisfies Preset.ThemeConfig,
};

Expand Down
52 changes: 34 additions & 18 deletions docs/sidebars.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";

/**
* Creating a sidebar enables you to:
Expand All @@ -12,23 +12,39 @@ import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
*/
const sidebars: SidebarsConfig = {
// By default, Docusaurus generates a sidebar from the docs folder structure
main: ["index", "quick-start", "mongodb",{
type: 'category',
label: 'Data Ingest CLI',
collapsible: false,
collapsed: false,
items: ["ingest/configure", "ingest/configuration-reference","ingest/command-reference", "ingest/data-sources", "ingest/fine-tune"]
}, {
type: 'category',
label: 'Chat Server',
collapsible: false,
collapsed: false,
items: ["server/configure", {
type: "link",
label: "OpenAPI Spec",
href: "/server/openapi",
}]
}, "ui"],
main: [
"index",
"quick-start",
"mongodb",
{
type: "category",
label: "Data Ingest CLI",
collapsible: false,
collapsed: false,
items: [
"ingest/configure",
"ingest/configuration-reference",
"ingest/command-reference",
"ingest/data-sources",
"ingest/fine-tune",
],
},
{
type: "category",
label: "Chat Server",
collapsible: false,
collapsed: false,
items: [
"server/configure",
{
type: "link",
label: "OpenAPI Spec",
href: "/server/openapi",
},
],
},
"ui",
],
};

export default sidebars;