From 8fcc511c4dccc98f7a2c508de44ded465ccd6aa4 Mon Sep 17 00:00:00 2001 From: Andreas Klos Date: Tue, 19 May 2026 11:38:10 +0200 Subject: [PATCH] chore(deps): fix dependabot python resolution --- services/rag-backend/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 services/rag-backend/README.md diff --git a/services/rag-backend/README.md b/services/rag-backend/README.md new file mode 100644 index 00000000..60ad81f9 --- /dev/null +++ b/services/rag-backend/README.md @@ -0,0 +1,18 @@ +# RAG backend + +The RAG backend provides the chat and retrieval API for the template. It uses +the shared RAG libraries to connect uploaded content, embeddings, vector +storage, and language model calls. + +# Requirements + +All required Python libraries can be found in the [pyproject.toml](pyproject.toml) +file. The backend ships its own `Dockerfile` and `Dockerfile.dev` and depends on +the [rag-core-api](../../libs/rag-core-api/) and +[rag-core-lib](../../libs/rag-core-lib/) packages. + +# Deployment + +A detailed explanation of the deployment can be found in the +[project README](../../README.md). The Helm chart used for deployment is in the +[infrastructure directory](../../infrastructure/).