From 2f58d87c22fb1e8d5dd04a90dcb1e6d84111151a Mon Sep 17 00:00:00 2001 From: Nathan Weinberg <31703736+nathan-weinberg@users.noreply.github.com> Date: Tue, 23 Sep 2025 17:30:24 -0400 Subject: [PATCH] docs: fix typos in RAG docs (#3530) Signed-off-by: Nathan Weinberg --- docs/source/building_applications/rag.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/building_applications/rag.md b/docs/source/building_applications/rag.md index 802859e87..9390c0310 100644 --- a/docs/source/building_applications/rag.md +++ b/docs/source/building_applications/rag.md @@ -272,9 +272,9 @@ B64_ENCODED_IMAGE = base64.b64encode( "https://raw.githubusercontent.com/meta-llama/llama-stack/refs/heads/main/docs/_static/llama-stack.png" ).content ) -RAGDocuemnt( +RAGDocument( document_id="num-4", content={"type": "image", "image": {"data": B64_ENCODED_IMAGE}}, ) ``` -for more strongly typed interaction use the typed dicts found [here](https://github.com/meta-llama/llama-stack-client-python/blob/38cd91c9e396f2be0bec1ee96a19771582ba6f17/src/llama_stack_client/types/shared_params/document.py). +For more strongly typed interaction use the typed dicts found [here](https://github.com/meta-llama/llama-stack-client-python/blob/38cd91c9e396f2be0bec1ee96a19771582ba6f17/src/llama_stack_client/types/shared_params/document.py).