From 20aa691b26e90eb8285e9e7fb36ea1474bf37792 Mon Sep 17 00:00:00 2001 From: Aymeric Date: Mon, 6 Jan 2025 13:20:06 +0100 Subject: [PATCH] Clarify in guided tour where to change system prompt --- docs/source/en/guided_tour.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/en/guided_tour.md b/docs/source/en/guided_tour.md index 5801924..904a798 100644 --- a/docs/source/en/guided_tour.md +++ b/docs/source/en/guided_tour.md @@ -137,7 +137,7 @@ For maximum flexibility, you can overwrite the whole system prompt template by p ```python from smolagents import ToolCallingAgent, PythonInterpreterTool, TOOL_CALLING_SYSTEM_PROMPT -modified_prompt = TOOL_CALLING_SYSTEM_PROMPT +modified_prompt = TOOL_CALLING_SYSTEM_PROMPT # This is where you can do your modifications agent = ToolCallingAgent(tools=[PythonInterpreterTool()], model=model, system_prompt=modified_prompt) ```