qwen3_code_fix
Fix bugs in code by analyzing error messages and providing corrected solutions for various programming languages.
Instructions
Fix bugs in code using Qwen3-Coder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | The buggy code to fix | |
error | No | Error message or description of the bug | |
language | No | Programming language of the code |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "The buggy code to fix",
"type": "string"
},
"error": {
"description": "Error message or description of the bug",
"type": "string"
},
"language": {
"description": "Programming language of the code",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}