From 7854af8b52063d11fddce74651e49a6b935eff89 Mon Sep 17 00:00:00 2001 From: ehhuang Date: Fri, 28 Feb 2025 16:42:29 -0800 Subject: [PATCH] docs: update user prompt example (#1329) Summary: in case user sets it to a small model with poor tool use capability Test Plan: copy and paste to notebook and ran --- 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