From b827b9e07b16a56228d0aa2c5f277dc9b040bca6 Mon Sep 17 00:00:00 2001 From: ehhuang Date: Mon, 10 Mar 2025 10:42:05 -0700 Subject: [PATCH] docs: update prompt for websearch example (#1520) Summary: model is sometimes reluctant to use tools by default. Test Plan: run in notebook --- docs/getting_started.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started.ipynb b/docs/getting_started.ipynb index 513335c52..01e63fc4f 100644 --- a/docs/getting_started.ipynb +++ b/docs/getting_started.ipynb @@ -1640,7 +1640,7 @@ "agent = Agent(\n", " client, \n", " model=model_id,\n", - " instructions=\"You are a helpful assistant\",\n", + " instructions=\"You are a helpful assistant. Use websearch tool to help answer questions.\",\n", " tools=[\"builtin::websearch\"],\n", ")\n", "user_prompts = [\n",