From d8fd2179a0ab95c957383ede9c42e53d1ca63bd6 Mon Sep 17 00:00:00 2001 From: Aymeric Date: Tue, 31 Dec 2024 12:39:23 +0100 Subject: [PATCH] Test documentation build --- docs/source/tutorials/building_good_agents.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/tutorials/building_good_agents.md b/docs/source/tutorials/building_good_agents.md index d82717e..a44435e 100644 --- a/docs/source/tutorials/building_good_agents.md +++ b/docs/source/tutorials/building_good_agents.md @@ -187,8 +187,8 @@ Better ways to guide your LLM engine are: - If it's about how to use tools: the description attribute of your tools. If after trying the above, you still want to change the system prompt, your new system prompt passed to `system_prompt` upon agent initialization needs to contain the following placeholders that will be used to insert certain automatically generated descriptions when running the agent: -- `"{{tool_descriptions}}"` to insert tool descriptions -- `"{{managed_agents_description}}"` to insert the description for managed agents if there are any +- `"{{tool_descriptions}}"` to insert tool descriptions. +- `"{{managed_agents_description}}"` to insert the description for managed agents if there are any. - For `CodeAgent` only: `"{{authorized_imports}}"` to insert the list of authorized imports.