Views
No views yet
This repository does not contain model weights.
It documents how to serveQwen/Qwen3.6-27Bfor the AI Code Reviewer MCP project: vLLM flags, generation settings, prompts, and the JSON output contract. Download weights from the base model repo.
| Type | Deployment config & model card |
| Weights | Qwen/Qwen3.6-27B |
| Companion dataset | ImTamsi/code-review-findings-samples |
| Gradio demo | ImTamsi/ai-code-reviewer |
| Hackathon org | build-small-hackathon |
transformers weights folder — only README.md is published hereread_file, list_files). The Gradio Space uses a
simplified single-pass flow with the same prompts.1vllm serve Qwen/Qwen3.6-27B \
2 --port 8000 \
3 --language-model-only \
4 --max-model-len 32768 \
5 --kv-cache-dtype fp8 \
6 --reasoning-parser qwen3 \
7 --enable-auto-tool-choice --tool-call-parser qwen3_coder \
8 --api-key "$QWEN_API_KEY"--language-model-only disables the vision encoder (code review is text-only),
freeing VRAM for KV cache.--tool-call-parser qwen3_coder + --enable-auto-tool-choice enable
OpenAI-style function calling used by the agentic read_file / list_files tools.| Quantization | VRAM | Example AWS instance |
|---|---|---|
| AWQ / INT4 | ~17 GB | g5.2xlarge (A10G 24 GB) |
| FP8 | ~28 GB | g6e.xlarge (L40S 48 GB) |
| BF16 | ~56 GB | g5.12xlarge (4x A10G, TP=4) |
| Parameter | Value |
|---|---|
| temperature | 0.2 |
| max_tokens | 4096 |
| response_format | json_object |
1{
2 "summary": "string",
3 "findings": [
4 {
5 "severity": "critical | high | medium | low | info",
6 "category": "string",
7 "file": "string | null",
8 "line": "number | null",
9 "title": "string",
10 "explanation": "string",
11 "suggestion": "string"
12 }
13 ]
14}ImTamsi/code-review-findings-samples
for annotated examples.packages/mcp-server/src/prompts/.read_file tool mitigates but does not eliminate coverage gaps.Qwen/Qwen3.6-27B.