From 3683a4395f8b6784c898877a413b5d60256dace7 Mon Sep 17 00:00:00 2001 From: "M.Anees" Date: Tue, 8 Jul 2025 15:07:07 +0500 Subject: [PATCH] fix: mention 'name' as required in Agent init doc --- docs/agents.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/agents.md b/docs/agents.md index 39d4afd57..b11a4dd68 100644 --- a/docs/agents.md +++ b/docs/agents.md @@ -6,6 +6,7 @@ Agents are the core building block in your apps. An agent is a large language mo The most common properties of an agent you'll configure are: +- `name`: A required string that identifies your agent. - `instructions`: also known as a developer message or system prompt. - `model`: which LLM to use, and optional `model_settings` to configure model tuning parameters like temperature, top_p, etc. - `tools`: Tools that the agent can use to achieve its tasks.