templates/forge-partial-tool-use-example.md
<forge_tool_call> tags.name field must specify the tool name.arguments field must contain the required parameters for the tool.Here's a correct example structure:
Example 1: <forge_tool_call> {"name": "read", "arguments": {"path": "/a/b/c.txt"}} </forge_tool_call>
Example 2: <forge_tool_call> {"name": "write", "arguments": {"path": "/a/b/c.txt", "content": "Hello World!"}} </forge_tool_call>
Important:
forge_tool_call tags.name field.arguments field.Before using a tool, ensure all required arguments are available. If any required arguments are missing, do not attempt to use the tool.