--- license: apache-2.0 language: - en - zh - multilingual tags: - gguf - qwen3 - qwen3.6 - reasoning - coding - coding-agent - academic-writing - uncensored - rys - lora - iq4_nl - bf16 base_model: - jackasda211233/Qwen3.6-27B-AEON-RYS-SignalLatch-GGUF - jackasda211233/Qwen3.6-27B-AEON-RYS-15-20-GGUF - AEON-7/Qwen3.6-27B-AEON-Ultimate-Uncensored --- # Qwen3.6 AEON RYS Agentic-Coder PatchCode GGUF > **ποΈ Vision Support Added** β This model now supports image input! Download a [mmproj projector file](#vision-support-mmproj) from the file list and add `--mmproj` to enable vision. See the [Vision Support section](#vision-support-mmproj) below for details. > **β οΈ Required runtime β read first.** This model **must be used with** the custom AEON ik-llama fork: > > **https://github.com/noonr48/qwen36-aeon-ik-llama** > > Use that fork with Jinja and DeepSeek reasoning formatting. This is **not** a stock `llama.cpp` or `vLLM` GGUF β the Qwen3.6 hybrid/recurrent (`qwen3_5`) architecture will fail to load on stock runtimes (`missing tensor blk.N.ssm_conv1d.weight`). > **Full process & testing write-up** β the quant bake-off: every phase, raw seed scores, the noise analysis, and the exact dataset pipeline. > **[Open the write-up](https://noonr48.github.io/qwen36-aeon-ik-llama/patchcode-testing-process/index.html)** Β· [HTML file in this repo](./PATCHCODE_TESTING_PROCESS.html) This is a merged fine-tuned GGUF upgrade candidate for the existing AEON RYS SignalLatch release. PatchCode adds an agentic-coder behaviour distil on top of SignalLatch: an action-first, verify-before-claim execution style for coding agents β minimal preamble, claims backed by an actual run, systematic diagnoseβfix loops, and stable multi-turn tool use. The main project here is the `IQ4_NL` GGUF: a practical small-form-factor release aimed at pulling as much useful coding-agent performance as possible out of the AEON RYS line without asking people to run a huge source-quality file. The `BF16` artifact is included for people who want to inspect, re-quantize, or continue work from the merged fine-tuned model. PatchCode is distilled around an `Investigate β Act β Verify β Repair β Confirm` loop for coding agents. It promotes reading the real context first, acting with a concrete patch, **claiming nothing without a run**, repairing from evidence when a check fails, and confirming through validation. Upgrade target: - existing repo: `https://huggingface.co/jackasda211233/Qwen3.6-27B-AEON-RYS-SignalLatch-GGUF` - existing file: `Qwen3.6-27B-AEON-RYS-SignalLatch-ckpt386-s010-IQ4_NL.gguf` SignalLatch was already close to its BF16 source on the mixed probe snapshot. PatchCode keeps that small-form-factor Q4_NL path as the main deployment target and tests whether the agentic-coder distil improves practical coding-agent behaviour on top of it. Practical eval: under a hardened 5-seed, same-condition bake-off (160k-token real-world multi-file build as the discriminator β single-shot coding gates saturate and were rejected), PatchCode `IQ4_NL` tied `BF16` within noise on build, long-context, and discipline, at ~1β3 the size. See the eval snapshot below. Release files: - `Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.IQ4_NL.gguf` - `Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.BF16.gguf` - `qwen36-mtp-rys_delta.patch` (optional ik-llama MTP speed patch β **not** required to load/serve) Use these as merged GGUF files. They are not intended to be loaded as live LoRAs at inference time. The recommended practical deployment file is the `IQ4_NL` GGUF. The `BF16` GGUF is provided as a single source-quality exploration artifact, not the normal runtime target. ## Vision Support (mmproj) > **This model supports vision/image input.** Qwen3.6-27B is natively a vision-language model. Download one of the mmproj (multimodal projector) files below and pass it with `--mmproj` to enable image understanding. The projector is extracted from the official [Qwen/Qwen3.6-27B](https://huggingface.co/Qwen/Qwen3.6-27B) base model. Since text fine-tuning does not modify the vision encoder, one projector works across all three RYS variants (base, SignalLatch, PatchCode). ### Download a projector | File | Precision | Size | Link | |---|---|---:|---| | `mmproj-Qwen3.6-27B-base-f32.gguf` | F32 (full precision) | 1.8 GB | [β¬ Download](https://huggingface.co/jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF/resolve/main/mmproj-Qwen3.6-27B-base-f32.gguf) | | `mmproj-Qwen3.6-27B-base-f16.gguf` | F16 (half precision) | 885 MB | [β¬ Download](https://huggingface.co/jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF/resolve/main/mmproj-Qwen3.6-27B-base-f16.gguf) | | `mmproj-Qwen3.6-27B-base-q8_0.gguf` | Q8_0 (8-bit quantized) | 601 MB | [β¬ Download](https://huggingface.co/jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF/resolve/main/mmproj-Qwen3.6-27B-base-q8_0.gguf) | **Recommended:** `mmproj-Qwen3.6-27B-base-f16.gguf` β best balance of quality and size. ### Usage Add `--mmproj` to your llama-server command: ```bash ./build/bin/llama-server -m Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.IQ4_NL.gguf \ --mmproj mmproj-Qwen3.6-27B-base-f16.gguf \ --jinja -ngl 999 -c 200000 ``` Then send images via the standard OpenAI-compatible API: ```bash curl http://localhost:8080/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{"messages":[{"role":"user","content":[ {"type":"image_url","image_url":{"url":"data:image/jpeg;base64,..."}},{"type":"text","text":"Describe this image"} ]}]}' ``` For higher-resolution images, add `--image-max-tokens 16384` (default is 4096). Requires an ik-llama / llama.cpp build from May 2026 or later with Qwen3VL mtmd support. ## Which file should I use? Most people should start with: `Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.IQ4_NL.gguf` That file is the intended release artifact. It is the continuation of the AEON RYS β SignalLatch β PatchCode line: keep the model small enough to be practical, then tune and test the stack until the small file gives the strongest useful behaviour we can get from it. Use the single-file `BF16` GGUF only if you want to explore the merged model directly, make your own quant, compare conversion settings, or continue downstream work from the fine-tuned merge. ## At a glance - base line: `Qwen3.6-27B-AEON-RYS-SignalLatch-ckpt386-s010` (SignalLatch) - upstream AEON source: `AEON-7/Qwen3.6-27B-AEON-Ultimate-Uncensored` - fine-tune: agentic-coder joint behaviour LoRA, checkpoint `3661`, one epoch - merge strength: `0.5` (effective alpha/r = 1.0) - main release artifact: `IQ4_NL` GGUF - goal: maximum practical coding-agent behaviour in a small-form-factor GGUF - recommended runtime file size: about `16.6 GB` - companion source-quality artifact: single-file `BF16` GGUF, about `57.6 GB` - intended runtime: `https://github.com/noonr48/qwen36-aeon-ik-llama` - focus: practical coding-agent and tool-use behaviour - public name: `PatchCode` - behaviour loop: `Investigate β Act β Verify β Repair β Confirm` - not a general chat benchmark claim - not a stock `llama.cpp` / `vLLM` release  ## What changed vs the SignalLatch release The previous SignalLatch file is the base deployment target this is meant to improve: `Qwen3.6-27B-AEON-RYS-SignalLatch-ckpt386-s010-IQ4_NL.gguf` hosted at `https://huggingface.co/jackasda211233/Qwen3.6-27B-AEON-RYS-SignalLatch-GGUF`. This upload merges an agentic-coder joint behaviour LoRA into that already-strong SignalLatch line before exporting to `IQ4_NL`. The goal is not to make a new general-purpose model family. The goal is to improve practical code-agent behaviour while preserving the practical small-file deployment path: following repo-edit instructions, handling tool-shaped context, finishing concrete patches, and avoiding repeated timeout-like failures. Training summary: - dataset: ~`58.5k` agentic-coding behaviour examples (coding execution traces + action-first style traces) - training completion: checkpoint `3661`, one epoch - LoRA rank: `32` - LoRA alpha: `64` - LoRA dropout: `0.05` - target modules: all-linear, incl. the hybrid self-attn + linear-attn/SSM + MLP projections - selected merge strength: `0.5` ### How the dataset was built (~58.5k examples) The blend has two pieces, designed so the model learns an execution *discipline* rather than project facts: **Synthetic coding-agent behaviour backbone (~43k).** A standalone generator produces multi-turn coding-agent traces β fully synthetic, no real user data or scraped repos. Each trace is shaped around a named behaviour from a ~30-item pool (`survey_before_edit`, `hypothesis_driven_debugging`, `weigh_alternatives_then_commit`, `external_awareness`, ...). Two design choices carry the load: - **Tool-agnostic vocabulary (anti-lock-in).** Tool calls use a behavioural-category vocabulary (`memory_search`, `repo_search`, `render_or_visual_proof`), not real tool names β the model learns *when/why* to reach for a tool, not a vendor's API surface. - **Toolkit-variance selection habit.** The in-context tool manifest's *membership* is varied run-to-run, and supervision rewards the *reasoning for choosing a tool* given whatever toolkit happens to be present, then generalises to a held-out toolkit the model never saw. This is the core habit the distil targets: tool selection that survives changing harnesses. - **Quality gates** drop (rather than emit) traces that fail: no-op-edit, claim-without-verify, reasoning-empty, incomplete-trace, lang-runner-mismatch, prompt-over-cap. Deficit-resume scheduling keeps generation running until per-behaviour counts are met. **Curated action-first style slice (~7k).** Terse narrateβactβverify traces spanning many projects on purpose, so the style generalises instead of locking to one domain. De-identified: real tool names, hostnames, and paths are abstracted to placeholders; supervision is assistant-turn-only (system/user/tool turns masked), so the model learns a behaviour policy conditioned on varied context, not project facts as outputs. A small blender oversamples the style slice (~2.2Γ) so it is not drowned by the backbone, then shuffles: ~74% coding backbone / ~26% action-first style. Exact counts, drop reasons, and the full pipeline are in the [process write-up](./PATCHCODE_TESTING_PROCESS.html). ## Recommended runtime Use the custom AEON ik-llama fork: `https://github.com/noonr48/qwen36-aeon-ik-llama` **What the eval actually ran (evaluated shape):** The bake-off served the model on a 4-GPU pool (1Γ RTX 5090 + 3Γ RTX 3090) with **graph split** and flash attention, KV cache in f16: ```bash ./build/bin/llama-server \ -m /path/to/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.IQ4_NL.gguf \ -c 65536 \ -ngl 999 \ -sm graph \ -b 512 \ -ub 128 \ -fa on \ -ctk f16 \ -ctv f16 \ --jinja \ --reasoning-format deepseek \ --reasoning-budget 0 ``` Sampling temp: the KritaLite build discriminator ran greedy at `--temp 0.0`; the discipline rubric at `0.2`. An agentic temp sweep (`0.0 / 0.3 / 0.6 / 0.9`) found PatchCode robust across `0.0β0.6` (all converge), most turn-efficient at `0.6`, degrading at `0.9` β so `--temp 0.6` is the recommended default below (or `--temp 0.0` greedy for deterministic single-shot coding). **Single-GPU deployment:** On one visible GPU, swap graph split for `-sm none`: ```bash ./build/bin/llama-server \ -m /path/to/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.IQ4_NL.gguf \ -c 65536 \ -ngl 999 \ -np 1 \ -fa on \ -sm none \ --temp 0.6 \ --jinja \ --reasoning-format deepseek \ --reasoning-budget 0 ``` **Long-context deployment (single slot):** ```bash ./build/bin/llama-server \ -m /path/to/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.IQ4_NL.gguf \ -c 163840 \ -np 1 \ -ngl 999 \ -b 512 \ -ub 128 \ -fa on \ -sm none \ -ctk f16 \ -ctv f16...