From e2c284f64ea6a074ae641388062e31d55b233e97 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 9 Aug 2026 19:05:32 -0700 Subject: [PATCH] Documentation: add wiki links for AI stuff and parser plugins (#13626) --- docs/advanced_usage.md | 7 ++++++- docs/configuration.md | 4 ++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/advanced_usage.md b/docs/advanced_usage.md index 74e31b454..29c427fb0 100644 --- a/docs/advanced_usage.md +++ b/docs/advanced_usage.md @@ -129,6 +129,10 @@ At a minimum you need to enable AI and choose an LLM backend: and/or [`PAPERLESS_AI_LLM_ENDPOINT`](configuration.md#PAPERLESS_AI_LLM_ENDPOINT). Ollama requires `PAPERLESS_AI_LLM_ENDPOINT` pointing at your Ollama server. +See the community-maintained wiki page on +[choosing AI models](https://github.com/paperless-ngx/paperless-ngx/wiki/AI-Model-Recommendations) +for suggested generation and embedding models. + ### AI-assisted suggestions With AI enabled, Paperless-ngx can suggest a title, tags, correspondent, document type, @@ -808,7 +812,8 @@ Third-party parser plugins extend Paperless-ngx to support additional file formats. A plugin is a Python package that advertises itself under the `paperless_ngx.parsers` entry point group. Refer to the [developer documentation](development.md#making-custom-parsers) for how to -create one. +create one, or see the wiki for a community-maintained list of +[parser plugins](https://github.com/paperless-ngx/paperless-ngx/wiki/Related-Projects#parser-plugins). !!! warning "Third-party plugins are not officially supported" diff --git a/docs/configuration.md b/docs/configuration.md index 16d11e6b5..5d7be5972 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -2069,6 +2069,8 @@ suggestions. This setting is required to be set to true in order to use the AI f models supported by the current embedding backend. If not supplied, defaults to "text-embedding-3-small" for the OpenAI-compatible backend, "sentence-transformers/all-MiniLM-L6-v2" for Huggingface, and "embeddinggemma" for Ollama. +See [choosing AI models](https://github.com/paperless-ngx/paperless-ngx/wiki/AI-Model-Recommendations) +for language and resource considerations. Defaults to None. @@ -2125,6 +2127,8 @@ setting is required to be set to use the AI features. : The model to use for the AI backend, i.e. "gpt-3.5-turbo", "gpt-4" or any of the models supported by the current backend. If not supplied, defaults to "gpt-3.5-turbo" for the OpenAI-compatible backend and "llama3.1" for Ollama. +See [choosing AI models](https://github.com/paperless-ngx/paperless-ngx/wiki/AI-Model-Recommendations) +for local versus remote and model-size considerations. Defaults to None.