explain_code
Understand code functionality quickly by providing a detailed explanation of the target code, with optional context for clarity.
Instructions
Provides detailed explanation of the given code.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | Target code | |
context | No | Additional context |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "Target code",
"type": "string"
},
"context": {
"default": "",
"description": "Additional context",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}