log_tool_execution
Record tool executions to help AI systems learn from user corrections and automatically update configuration files based on detected patterns.
Instructions
Log tool execution for learning
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | Yes | ||
result | Yes | ||
tool_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"args": {
"type": "object"
},
"result": {
"type": "object"
},
"tool_name": {
"type": "string"
}
},
"required": [
"tool_name",
"args",
"result"
],
"type": "object"
}