From 2fefe8dacdd7dc3d9044c43749904a7c7d720454 Mon Sep 17 00:00:00 2001 From: ehhuang Date: Thu, 23 Jan 2025 17:02:04 -0800 Subject: [PATCH] Update 'first RAG agent' in gettingstarted doc (#867) # What does this PR do? Fix documentation to reflect new API ## Test Plan Before: User> What are the top 5 topics that were explained? Only list succinct bullet points. inference> I'm ready to help, but we haven't discussed any topics yet! This is the start of our conversation. What would you like to talk about? I can summarize our discussion at the end if you'd like. Run with the change, observe relevant response image ## Sources Please link relevant resources if necessary. ## Before submitting - [x] This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case). - [ ] Ran pre-commit to handle lint / formatting issues. - [ ] Read the [contributor guideline](https://github.com/meta-llama/llama-stack/blob/main/CONTRIBUTING.md), Pull Request section? - [ ] Updated relevant documentation. - [ ] Wrote necessary unit or integration tests. Co-authored-by: Eric Huang (AI Platform) --- docs/source/getting_started/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/getting_started/index.md b/docs/source/getting_started/index.md index 92726e5e6..5a2d94f4e 100644 --- a/docs/source/getting_started/index.md +++ b/docs/source/getting_started/index.md @@ -153,7 +153,7 @@ agent_config = AgentConfig( # Define tools available to the agent toolgroups = [ { - "name": "builtin::memory", + "name": "builtin::rag", "args" : { "vector_db_ids": [vector_db_id], }