qwen3_code_explain
Explain code functionality and logic using the Qwen3-Coder model to help developers understand programming concepts and implementation details.
Instructions
Explain code using Qwen3-Coder
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| code | Yes | The code to explain | |
| language | No | Programming language of the code | 
Input Schema (JSON Schema)
{
  "properties": {
    "code": {
      "description": "The code to explain",
      "type": "string"
    },
    "language": {
      "description": "Programming language of the code",
      "type": "string"
    }
  },
  "required": [
    "code"
  ],
  "type": "object"
}