From aaadced47f19a4890b8f079c8aa49edc048feab6 Mon Sep 17 00:00:00 2001 From: Sohan <1119120+sohanmaheshwar@users.noreply.github.com> Date: Fri, 10 Apr 2026 14:48:52 +0200 Subject: [PATCH 1/2] chore: Updated URL of the repo was pointing to a old URL --- app/spicedb/tutorials/agentic-rag/page.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/spicedb/tutorials/agentic-rag/page.mdx b/app/spicedb/tutorials/agentic-rag/page.mdx index 9777736d..39267e54 100644 --- a/app/spicedb/tutorials/agentic-rag/page.mdx +++ b/app/spicedb/tutorials/agentic-rag/page.mdx @@ -865,8 +865,8 @@ The `QueryRequest` Pydantic model enforces `max_attempts` between 1 and 5, preve ```bash # 1. Clone the reference implementation -git clone https://github.com/authzed/agentic-rag-weaviate -cd agentic-rag-weaviate +git clone https://github.com/authzed/examples.git +cd agentic-rag-authorization # 2. Start services (Weaviate + SpiceDB) docker-compose up -d From e636a491bc88de67696ebd6be406e16c295041be Mon Sep 17 00:00:00 2001 From: Sohan Maheshwar <1119120+sohanmaheshwar@users.noreply.github.com> Date: Fri, 5 Jun 2026 11:50:24 +0200 Subject: [PATCH 2/2] update agentic-rag example link to weaviate branch --- app/spicedb/tutorials/agentic-rag/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/spicedb/tutorials/agentic-rag/page.mdx b/app/spicedb/tutorials/agentic-rag/page.mdx index 39267e54..83f64220 100644 --- a/app/spicedb/tutorials/agentic-rag/page.mdx +++ b/app/spicedb/tutorials/agentic-rag/page.mdx @@ -2,7 +2,7 @@ This guide shows how to add fine-grained authorization to a production-like RAG system using SpiceDB. Standard RAG pipelines follow a fixed `query -> retrieve -> generate` flow. This implementation adds a deterministic authorization step that agents cannot bypass. The example uses SpiceDB for authorization, [Weaviate](https://github.com/weaviate/weaviate) as the vector database, and the [LangChain-SpiceDB library](https://pypi.org/project/langchain-spicedb/). -The full code repository can be [found here](https://github.com/authzed/examples/tree/main/agentic-rag-authorization) +The full code repository can be [found here](https://github.com/authzed/examples/tree/weaviate/agentic-rag-authorization) ## Why Agentic RAG Needs Authorization