diff --git a/docs/features/rag.md b/docs/features/rag.md new file mode 100644 index 0000000..3d223f1 --- /dev/null +++ b/docs/features/rag.md @@ -0,0 +1,26 @@ +# Retrieval Augmented Generation (RAG) + +Retrieval Augmented Generation (RAG) allows context from other diverse sources to be included in chats. Text from different sources is combined with the RAG template and prefixed to the user's prompt. + +## Including external sources in chats +Activate RAG by starting the prompt with a `#` symbol. A list of sources will appear. + +Once selected, a document icon appears at the top of the prompt, indicating successful retrieval. + +### Local sources + +Local documents must first be uploaded via the Documents section. + +### Sourcing from the Web + +Remote sources acheived with `#` followed by the target URL. Open WebUI fetches and parses the URL. + +> **Tip:** Webpages often include extraneous information such as navigation and footer. Link to a raw or reader-friendly version of the page for better results. + +## Document parsing + +Local and remote documents have content extract with a variety of parsers. For more, see [https://github.com/open-webui/open-webui/blob/2fa94956f4e500bf5c42263124c758d8613ee05e/backend/apps/rag/main.py#L328] + +## RAG Template Customisation + +Modify the RAG template by accessing the 'settings' icon housed within the 'Documents' section.