From c919b8a3a85f689fe58d65d6f472ca788a98743d Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Fri, 25 Apr 2025 13:17:48 -0400 Subject: [PATCH] fix: Update RAG API documentation for clarity on feature availability, closes #249 --- pages/docs/configuration/rag_api.mdx | 4 +--- pages/docs/features/rag_api.mdx | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/pages/docs/configuration/rag_api.mdx b/pages/docs/configuration/rag_api.mdx index a7674e1..a1cc817 100644 --- a/pages/docs/configuration/rag_api.mdx +++ b/pages/docs/configuration/rag_api.mdx @@ -9,14 +9,12 @@ description: Configure Retrieval-Augmented Generation (RAG) API for document ind --- -**Currently, this feature is available to all Custom Endpoints, OpenAI, Azure OpenAi, Anthropic, and Google.** +**Currently, this feature is available through [Agents](/docs/features/agents), as well as through Custom Endpoints, OpenAI, Azure OpenAI, Anthropic, and Google.** OpenAI Assistants have their own implementation of RAG through the "Retrieval" capability. Learn more about it [here.](https://platform.openai.com/docs/assistants/tools/knowledge-retrieval) It will still be useful to implement usage of the RAG API with the Assistants API since OpenAI charges for both file storage, and use of "Retrieval," and will be introduced in a future update. -Plugins support is not enabled as the whole "plugin/tool" framework will get a complete rework soon, making tools available to most endpoints (ETA Summer 2024). - **Still confused about RAG?** [Read the RAG API Presentation](/docs/features/rag_api#what-is-rag) explaining the general concept in more detail with a link to a helpful video. ## Setup diff --git a/pages/docs/features/rag_api.mdx b/pages/docs/features/rag_api.mdx index 9df74e6..b080ee8 100644 --- a/pages/docs/features/rag_api.mdx +++ b/pages/docs/features/rag_api.mdx @@ -15,14 +15,12 @@ It leverages LangChain, PostgresQL + PGVector, and Python FastAPI to index and r --- -**Currently, this feature is available to all Custom Endpoints, OpenAI, Azure OpenAi, Anthropic, and Google.** +**Currently, this feature is available through [Agents](/docs/features/agents), as well as through Custom Endpoints, OpenAI, Azure OpenAI, Anthropic, and Google.** OpenAI Assistants have their own implementation of RAG through the "Retrieval" capability. Learn more about it [here.](https://platform.openai.com/docs/assistants/tools/knowledge-retrieval) It will still be useful to implement usage of the RAG API with the Assistants API since OpenAI charges for both file storage, and use of "Retrieval," and will be introduced in a future update. -Plugins support is not enabled as the whole "plugin/tool" framework will get a complete rework soon, making tools available to most endpoints (ETA Summer 2024). - **Still confused about RAG?** [Read the section I wrote below](#what-is-rag) explaining the general concept in more detail with a link to a helpful video. ## What is RAG?