From 577a8d8c5d607dc7fce1eab8854601ae886b3c40 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 8 May 2026 07:41:38 -0700 Subject: [PATCH] Update configuration.md --- docs/configuration.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 397676a53..089253873 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -2014,8 +2014,8 @@ suggestions. This setting is required to be set to true in order to use the AI f #### [`PAPERLESS_AI_LLM_EMBEDDING_BACKEND=`](#PAPERLESS_AI_LLM_EMBEDDING_BACKEND) {#PAPERLESS_AI_LLM_EMBEDDING_BACKEND} -: The embedding backend to use for RAG. This can be either "openai-like" or "huggingface". The -"openai-like" backend uses an OpenAI-compatible embeddings API. +: The embedding backend to use for RAG. This can be "openai-like", "huggingface", or +"ollama". The "openai-like" backend uses an OpenAI-compatible embeddings API. Defaults to None. @@ -2023,8 +2023,15 @@ suggestions. This setting is required to be set to true in order to use the AI f : The model to use for the embedding backend for RAG. This can be set to any of the embedding models supported by the current embedding backend. If not supplied, defaults to -"text-embedding-3-small" for the OpenAI-compatible backend and -"sentence-transformers/all-MiniLM-L6-v2" for Huggingface. +"text-embedding-3-small" for the OpenAI-compatible backend, +"sentence-transformers/all-MiniLM-L6-v2" for Huggingface, and "embeddinggemma" for Ollama. + + Defaults to None. + +#### [`PAPERLESS_AI_LLM_EMBEDDING_ENDPOINT=`](#PAPERLESS_AI_LLM_EMBEDDING_ENDPOINT) {#PAPERLESS_AI_LLM_EMBEDDING_ENDPOINT} + +: The endpoint / url to use for the embedding backend. If not supplied, embeddings use +`PAPERLESS_AI_LLM_ENDPOINT`. Defaults to None.