Clarify in guided tour where to change system prompt

This commit is contained in:
Aymeric 2025-01-06 13:20:06 +01:00
parent 3f79baee71
commit 20aa691b26
1 changed files with 1 additions and 1 deletions

View File

@ -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)
```