mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-18 18:49:48 +00:00
The detailed RAG tutorial was using a client-generated `vector_db_id`. Recent versions of Llama-Stack ignore this ID and assign a new server-side ID, causing the `rag_tool.insert` call to fail with a `400 Bad Request` error. This commit updates the code to capture the authoritative ID from the `.identifier` attribute of the `register()` method's response object. A concise comment is also added to explain why this is necessary. This ensures the tutorial code runs successfully and reflects the current API behavior related to the deprecation of VectorDB. |
||
|---|---|---|
| .. | ||
| _static | ||
| notebooks | ||
| openapi_generator | ||
| resources | ||
| source | ||
| zero_to_hero_guide | ||
| conftest.py | ||
| contbuild.sh | ||
| dog.jpg | ||
| getting_started.ipynb | ||
| getting_started_llama4.ipynb | ||
| getting_started_llama_api.ipynb | ||
| license_header.txt | ||
| make.bat | ||
| Makefile | ||
| original_rfc.md | ||
| quick_start.ipynb | ||
| README.md | ||
Llama Stack Documentation
Here's a collection of comprehensive guides, examples, and resources for building AI applications with Llama Stack. For the complete documentation, visit our ReadTheDocs page.
Render locally
From the llama-stack root directory, run the following command to render the docs locally:
uv run --group docs sphinx-autobuild docs/source docs/build/html --write-all
You can open up the docs in your browser at http://localhost:8000
Content
Try out Llama Stack's capabilities through our detailed Jupyter notebooks:
- Building AI Applications Notebook - A comprehensive guide to building production-ready AI applications using Llama Stack
- Benchmark Evaluations Notebook - Detailed performance evaluations and benchmarking results
- Zero-to-Hero Guide - Step-by-step guide for getting started with Llama Stack