From 5d438146755a4ac00db93686fbbcb267f2adce29 Mon Sep 17 00:00:00 2001 From: April M <36110273+aimurphy@users.noreply.github.com> Date: Tue, 13 Jan 2026 05:36:53 -0800 Subject: [PATCH 1/6] temporarily add meta tag to verify algolia --- docs/docs/get-started/what-is-openrag.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/docs/get-started/what-is-openrag.mdx b/docs/docs/get-started/what-is-openrag.mdx index 440d4604..7458dccf 100644 --- a/docs/docs/get-started/what-is-openrag.mdx +++ b/docs/docs/get-started/what-is-openrag.mdx @@ -4,6 +4,8 @@ slug: / hide_table_of_contents: true --- + + OpenRAG is an open-source package for building agentic RAG systems that integrates with a wide range of orchestration tools, databases, and LLM providers. OpenRAG connects and amplifies three popular, proven open-source projects into one powerful platform: From a454167a4daf64fb7a9aa2c56a946d0d3e2cc6a8 Mon Sep 17 00:00:00 2001 From: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Date: Tue, 13 Jan 2026 09:51:14 -0500 Subject: [PATCH 2/6] global-head-meta --- docs/docs/get-started/what-is-openrag.mdx | 2 -- docs/docusaurus.config.js | 8 ++++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/docs/get-started/what-is-openrag.mdx b/docs/docs/get-started/what-is-openrag.mdx index 7458dccf..440d4604 100644 --- a/docs/docs/get-started/what-is-openrag.mdx +++ b/docs/docs/get-started/what-is-openrag.mdx @@ -4,8 +4,6 @@ slug: / hide_table_of_contents: true --- - - OpenRAG is an open-source package for building agentic RAG systems that integrates with a wide range of orchestration tools, databases, and LLM providers. OpenRAG connects and amplifies three popular, proven open-source projects into one powerful platform: diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 05232b40..61dd67ff 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -17,6 +17,14 @@ const config = { favicon: 'img/favicon.ico', headTags: [ + // Algolia site verification meta tag + { + tagName: "meta", + attributes: { + name: "algolia-site-verification", + content: "424339D27FB7921F", + }, + }, ...(isProduction ? [ // Google Consent Mode - Set defaults before Google tags load From 4fafd90d268ca0bc0a67bc75e7c91652f70e37e1 Mon Sep 17 00:00:00 2001 From: April M <36110273+aimurphy@users.noreply.github.com> Date: Tue, 13 Jan 2026 07:03:42 -0800 Subject: [PATCH 3/6] remove algolia meta tag after domain verified --- docs/docusaurus.config.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 61dd67ff..05232b40 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -17,14 +17,6 @@ const config = { favicon: 'img/favicon.ico', headTags: [ - // Algolia site verification meta tag - { - tagName: "meta", - attributes: { - name: "algolia-site-verification", - content: "424339D27FB7921F", - }, - }, ...(isProduction ? [ // Google Consent Mode - Set defaults before Google tags load From a6692aa3e140921b52a96dcfea80b9d176608320 Mon Sep 17 00:00:00 2001 From: April M <36110273+aimurphy@users.noreply.github.com> Date: Tue, 13 Jan 2026 07:49:45 -0800 Subject: [PATCH 4/6] generate sitemap --- docs/docusaurus.config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 61dd67ff..d708ca59 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -184,6 +184,19 @@ const config = { theme: { customCss: './src/css/custom.css', }, + // Use preset-classic sitemap https://docusaurus.io/docs/api/plugins/@docusaurus/plugin-sitemap + sitemap: { + lastmod: 'date', + changefreq: 'weekly', + priority: 0.5, + ignorePatterns: ['/tags/**'], + filename: 'sitemap.xml', + createSitemapItems: async (params) => { + const {defaultCreateSitemapItems, ...rest} = params; + const items = await defaultCreateSitemapItems(rest); + return items.filter((item) => !item.url.includes('/page/')); + }, + }, }), ], ], From 346ad126dee5a95324b3174c62fbdafe30bbbee9 Mon Sep 17 00:00:00 2001 From: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Date: Tue, 13 Jan 2026 11:05:32 -0500 Subject: [PATCH 5/6] allow-indexing-to-generate-sitemap --- docs/docusaurus.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index d708ca59..71f7e272 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -135,7 +135,7 @@ const config = { baseUrl: process.env.BASE_URL ? process.env.BASE_URL : '/', // Control search engine indexing - set to true to prevent indexing - noIndex: true, + noIndex: false, // GitHub pages deployment config. // If you aren't using GitHub pages, you don't need these. From df3a9f72800e3067eb822c8803d5123890f64240 Mon Sep 17 00:00:00 2001 From: April M <36110273+aimurphy@users.noreply.github.com> Date: Tue, 13 Jan 2026 10:28:20 -0800 Subject: [PATCH 6/6] add small api/sdk page --- docs/docs/reference/api-sdk-overview.mdx | 12 ++++++++++++ docs/sidebars.js | 5 +++++ 2 files changed, 17 insertions(+) create mode 100644 docs/docs/reference/api-sdk-overview.mdx diff --git a/docs/docs/reference/api-sdk-overview.mdx b/docs/docs/reference/api-sdk-overview.mdx new file mode 100644 index 00000000..d3a7418f --- /dev/null +++ b/docs/docs/reference/api-sdk-overview.mdx @@ -0,0 +1,12 @@ +--- +title: OpenRAG APIs and SDKs +slug: /reference/api-sdk-overview +--- + +You can use OpenRAG's APIs and SDKs to integrate and extend OpenRAG's capabilities: + +* [Python SDK](https://github.com/langflow-ai/openrag/tree/main/sdks/python) +* [TypeScript/JavaScript SDK](https://github.com/langflow-ai/openrag/tree/main/sdks/typescript) + + + \ No newline at end of file diff --git a/docs/sidebars.js b/docs/sidebars.js index bc11ffa6..0cc0be91 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -75,6 +75,11 @@ const sidebars = { label: "Chat", }, "reference/configuration", + { + type: "doc", + id: "reference/api-sdk-overview", + label: "APIs and SDKs", + }, "support/contribute", "support/troubleshoot", ],