From 9c836b0a99eb91c04345b01d7cdf30dfb0ed90b6 Mon Sep 17 00:00:00 2001 From: Eric Huang Date: Fri, 28 Feb 2025 13:00:25 -0800 Subject: [PATCH] doc: use a better model in quickstart rag Summary: Test Plan: --- 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 eb0dcf392..5660c6ac3 100644 --- a/docs/source/getting_started/index.md +++ b/docs/source/getting_started/index.md @@ -261,7 +261,7 @@ rag_agent = Agent(client, agent_config) session_id = rag_agent.create_session("test-session") user_prompts = [ - "What are the top 5 topics that were explained? Only list succinct bullet points.", + "How to optimize memory usage in torchtune? use the knowledge_search tool to get information.", ] # Run the agent loop by calling the `create_turn` method