qwen3_code_review
Analyze code for issues and improvements using AI-powered code review. Submit code with language specification to receive detailed feedback on potential bugs, optimizations, and best practices.
Instructions
Review code using Qwen3-Coder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | The code to review | |
language | No | Programming language of the code |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "The code to review",
"type": "string"
},
"language": {
"description": "Programming language of the code",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}