Instructions to use jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF", filename="Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.BF16.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16 # Run inference directly in the terminal: llama cli -hf jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16 # Run inference directly in the terminal: llama cli -hf jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16 # Run inference directly in the terminal: ./llama-cli -hf jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16
Use Docker
docker model run hf.co/jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16
- LM Studio
- Jan
- Ollama
How to use jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF with Ollama:
ollama run hf.co/jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16
- Unsloth Studio
How to use jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF to start chatting
- Pi
How to use jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF with Docker Model Runner:
docker model run hf.co/jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16
- Lemonade
How to use jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF:BF16
Run and chat with the model
lemonade run user.Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF-BF16
List all available models
lemonade list
| # Qwen3.6 AEON RYS PatchCode (merged_lam0.5): What We Actually Did | |
| This is the longer, more casual write-up for the PatchCode upload candidate (internal project name `merged_lam0.5`). | |
| The clean model card stays short. This document is the full story: what we distilled, exactly how the dataset was built, how we tested it, why the early single-run scores fooled us, why we stopped trusting them, and why the upload candidate ended up being the plain `IQ4_NL` (reasoning-imatrix) merged GGUF rather than a heavier mixed-quant recipe. | |
| Related public guides: | |
| - runtime fork: `https://github.com/noonr48/qwen36-aeon-ik-llama` | |
| - RYS layer-duplication / architecture guide: `https://github.com/noonr48/qwen36-aeon-ik-llama/tree/main/docs/rys-layer-duplication-guide` | |
| - previous fine-tuned release (SignalLatch): `https://huggingface.co/jackasda211233/Qwen3.6-27B-AEON-RYS-SignalLatch-GGUF` | |
| Related release line: | |
| - previous finetune: `Qwen3.6-27B-AEON-RYS-SignalLatch-ckpt386-s010-IQ4_NL.gguf` | |
| - this upload candidate: `Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.IQ4_NL.gguf` | |
| ## Glossary | |
| - `AEON`: the upstream/source model family this RYS line was built from (`AEON-7/Qwen3.6-27B-AEON-Ultimate-Uncensored`). | |
| - `SignalLatch` / `ckpt386-s010`: the previous finetune in this line β a behaviour LoRA (checkpoint 386) merged into the AEON RYS base at strength `0.10`. PatchCode is built on top of this. | |
| - `PatchCode` / `merged_lam0.5`: the public name for this release. It is a second behaviour distil (an agentic-coder joint LoRA) merged onto SignalLatch at strength `0.5`. | |
| - `IQ4_NL`: the quantized GGUF deployment format we actually upload and run. | |
| - `imatrix`: importance-matrix-assisted quantization data. `reasoning-imatrix` = calibrated on reasoning/coding text (the kind that worked); `media-imatrix` = an earlier calibration kind that underperformed. | |
| - `ik-llama`: the custom runtime fork. The `qwen3_5` hybrid architecture does not load on stock `llama.cpp` / `vLLM`. | |
| - `KritaLite`: our hardened real-world discriminator build (a ~160k-token multi-file app, 15 binary verifier components). Single-shot coding gates saturate on this model family, so we stopped trusting them. | |
| - `discipline` / `style_discipline`: a rubric measuring the distilled action-first style (no preamble, claim-requires-run, narrateβactβverify). | |
| ## The short version | |
| We started from the SignalLatch finetune and distilled a second, agentic-coder behaviour LoRA on top of it. The goal was not a new general chat model. The goal was to make the model a better coding agent: action-first execution, claims backed by an actual run, systematic diagnoseβfix loops, stable multi-turn tool use, and fewer stalled runs. | |
| After a full 5-phase bake-off, the model that held up was: | |
| ```text | |
| Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.IQ4_NL.gguf | |
| ``` | |
| That means: | |
| - base: `Qwen3.6-27B-AEON-RYS-SignalLatch-ckpt386-s010` | |
| - adapter: agentic-coder joint LoRA, checkpoint `3661` | |
| - merge strength: `0.5` (effective alpha/r = 1.0) | |
| - deploy format: plain `IQ4_NL` with reasoning-imatrix | |
| - runtime: custom AEON ik-llama fork | |
| The awkward part β and the reason this write-up is long β is that the eventual ship pick was **not** the candidate that looked best early. A mixed-quant recipe (`c76`) hit a perfect-looking build score on the first multi-seed pass and did not reproduce. A 5-seed, same-condition confirm reversed the read. The plain `IQ4_NL` ended up tied with everything else within noise, so the decision fell to non-noise axes (size, recipe safety), where plain `IQ4_NL` wins. | |
| ## What this was meant to upgrade | |
| PatchCode is an upgrade over the existing SignalLatch finetune: | |
| ```text | |
| Qwen3.6-27B-AEON-RYS-SignalLatch-ckpt386-s010-IQ4_NL.gguf | |
| ``` | |
| The new work was not another RYS architecture pass (the architecture is unchanged and is documented in the layer-duplication guide). The new work was a behaviour distil layered on top of SignalLatch, then merged and quantized into the same practical Q4-class deployment lane. | |
| Public framing stays narrow: | |
| > This is a practical coding-agent / tool-use-oriented fine-tuned IQ4_NL variant of the SignalLatch release. | |
| It should not be framed as: | |
| - a universal upgrade over base in every format | |
| - a general chat benchmark win | |
| - a stock `llama.cpp` / `vLLM` model | |
| - a live-LoRA deployment recipe | |
| ## The dataset β exact pipeline | |
| This is the part most people ask about, so it is written out in full. The training blend is `~58.5k` examples and is made of two pieces: a large **synthetic coding-agent behaviour backbone** and a smaller **curated action-first style slice**, blended together. | |
| ### Piece 1 β synthetic coding-agent behaviour backbone (~43k) | |
| A standalone synthetic generator produces multi-turn coding-agent traces. It is **fully synthetic** β no real user data, no scraped repos. The pipeline: | |
| 1. **Behaviour-driven generation.** A pool of parallel workers calls a coding-agent teacher model. Each call is shaped around a named *behaviour* from a fixed behaviour pool (~30 behaviours), for example: | |
| - `survey_before_edit` β read/search the real context before touching code | |
| - `hypothesis_driven_debugging` β form a hypothesis, then verify | |
| - `tool_intent_first` β express tool intent before prose | |
| - `weigh_alternatives_then_commit` β weigh β₯3 options, commit to one, verify | |
| - `external_awareness` β check versions/docs before asserting | |
| - `recall_first_habit` β recall prior context before re-deriving | |
| 2. **Tool-agnostic vocabulary (anti-lock-in).** Tool calls use a behavioural-category vocabulary (e.g. `memory_search`, `repo_search`, `render_or_visual_proof`), not real tool names. This is deliberate: the model learns *when/why to use a tool*, not a specific vendor's API surface. | |
| 3. **Scenarios.** A synthetic scenario bank provides repo-shaped task context (file trees, failing tests, stack traces) so the traces are grounded in realistic edit/verify loops. | |
| 4. **Quality gates (per sample).** Traces that fail the gates are dropped, not emitted: | |
| - `no-op-edit` guard (a claimed edit that changes nothing) | |
| - `claim-without-verify` reject (the assistant claims done with no run/check) | |
| - `reasoning-empty` / `incomplete-trace` / `lang-runner-mismatch` / `prompt-over-cap` | |
| 5. **Deficit-resume scheduling.** Generation runs continuously, tracks per-behaviour deficits, and resumes after interruption until target counts are met (~30 samples/sec). | |
| **Corpus assembly + filtering (exact counts):** | |
| - raw unified coding corpus: `71,776` samples | |
| - filter drops `10,666` bad samples β `61,110` kept | |
| - top drop reasons: `prompt_over_cap` 3,946 Β· `lang_runner_mismatch` 3,645 Β· `reasoning_empty` 2,086 Β· `incomplete_trace` 861 Β· `claim_without_verify` 620 | |
| - coding training subset used for the blend: `43,075` | |
| The broader synthetic corpus spans five behaviour layers (media-behaviour 42,973 Β· tool-depth 15,242 Β· reliability 19,393 Β· self-correction 31,476 Β· coding 7,721 = `116,805` total before filtering); the blend draws the coding-oriented subset. | |
| ### Piece 2 β curated action-first style slice (~7k) | |
| A smaller slice of curated execution-style traces that model the exact discipline we wanted to amplify: terse narrateβactβverify, no preamble, claim-requires-run. Composition (`6,953` total): | |
| - own multi-project execution sessions (`5,455`) β span many different projects on purpose, so the style generalises instead of locking to one domain | |
| - a different-domain contributor (`1,130`) β explicitly included for cross-project transfer | |
| - reasoning-chain exemplars (`368`) β weigh-alternatives deliberation seeds | |
| **De-identification / anti-lock-in pass:** real tool names, hostnames, absolute paths, and identifiers are abstracted to behavioural-category tokens / placeholders. The supervision is **assistant-turn-only** β system/user/tool turns (where real project content lives) are masked (`IGNORE_INDEX`), so the model learns a *behaviour policy conditioned on varied context*, not project facts as outputs. | |
| ### Piece 3 β the blend | |
| A small blender oversamples the style slice so it is not drowned by the larger coding backbone, then shuffles: | |
| - coding backbone: `43,075` | |
| - style slice oversampled ~2.2Γ | |
| - blended training set: `58,576` β **~74% coding backbone / ~26% action-first style** | |
| The oversample ratio was chosen so the style shows up without overfitting the smaller slice; a held-out task type was used to check it generalises rather than parrots. | |
| ### What the dataset is *not* | |
| - It is not scraped real-user data or real private repos. | |
| - It is not a single-topic dataset β both pieces deliberately span many projects/domains. | |
| - It does not teach new domain *facts*; it teaches an execution *discipline*. | |
| ## The training piece | |
| A single LoRA was joint-co-trained on the blended `58.5k` set (one adapter, not two-then-merge β a prior two-adapter Ξ»-merge plan was superseded because post-hoc merges can kill a fragile capability with no usable Ξ»). | |
| Training config: | |
| - PEFT type: `LORA` | |
| - rank: `r=32`, alpha: `64` (alpha/r = 2.0) | |
| - dropout: `0.05` | |
| - target modules: **all-linear**, including the hybrid arch projections β `q/k/v/o_proj`, `gate/up/down_proj`, `out_proj`, and the linear-attn/SSM projections `in_proj_qkv / in_proj_a / in_proj_b / in_proj_z` | |
| - supervision: completion-only (assistant turns only) | |
| - optimiser: adamw, lr `5e-5` + warmup + cosine decay | |
| - epochs: `1` | |
| - backend: model-parallel `device_map` across a multi-GPU host (the max-quality path; the no-NVLink fleet ruled out DeepSpeed/FSDP here) | |
| Completion: | |
| - `global_step=3661` = `epoch 1.0` complete | |
| - final `train_loss β 0.853` | |
| - runtime ~91h (~89.5 s/it), grad-norm steady (no divergence) | |
| - 37 checkpoints saved across the run β full trajectory available for eval | |
| The adapter was behaviour-focused and small. It was not trained to teach broad new knowledge. | |
| ## The merge β why Ξ»=0.5 | |
| The trained default adapter strength (alpha/r = 2.0) was **over-applied**. A checkpoint Γ strength eval showed half-strength beat full-strength on all three tested checkpoints: | |
| | checkpoint | Ξ»=0.3 | Ξ»=0.5 | Ξ»=0.7 | Ξ»=1.0 | | |
| |---|---:|---:|---:|---:| | |
| | 3661 | 0.522 | **0.617** | 0.490 | 0.491 | | |
| | 2600 | 0.567 | **0.573** | β | 0.442 | | |
| | 1800 | 0.540 | **0.564** | β | 0.397 | | |
| At Ξ»=1.0 the adapter was net-neutral-to-harmful (one checkpoint fell *below* the un-adapted base). The mechanism: an over-loud LoRA delta pushes activations into regimes that hurt calibrated behaviour (preamble returns, over-claiming). Ξ»=0.5 (effective alpha/r = 1.0) keeps the style direction but respects base calibration. So the merge was done at **Ξ»=0.5 onto SignalLatch (ckpt386-s010)**, then exported to BF16 GGUF. (A future v2 could bake the good strength in by training at alpha=r=32, removing the inference-time knob.) | |
|  | |
| ## Why the final testing moved to merged IQ4_NL | |
| The key question was not "best adapter in BF16" β it was "what we would actually deploy". The deploy target was a merged GGUF, `IQ4_NL`, imatrix-quantized, on the custom ik-llama runtime (Jinja + DeepSeek reasoning format + flash attention + graph split, temp `0.7`). | |
| Live LoRA loading is not the production path for this release (the tested serving profile uses flash attention, which conflicts with live LoRA on this runtime). So the long-term path became: **merge the adapter first, then export + quantize a full GGUF.** That is why the upload is a merged GGUF, not an adapter. | |
| The plain `IQ4_NL` uses the **reasoning/coding imatrix** (the kind that worked). An earlier build used a media-domain imatrix; it underperformed and was superseded. | |
| ## The testing ladder (5 phases + confirms) | |
| Single-shot and hard-suite gates **saturate** on this model family (every quant scores ~the same, including BF16). The discrimination that actually changed the decision came from a 160k-token real-world build (KritaLite) run multi-seed, plus a discipline rubric, plus an agentic-process efficiency probe. The phases: | |
| **Phase 1 β single-seed real-world build.** Made the plain `IQ4_NL` look like the winner (0.933 vs c76's 0.867). This was **noise** β it did not reproduce. | |
| **Phase 2 β multi-seed KritaLite (3 seeds).** Reversed phase 1: `c76`/`c404`/`c373` hit 0.933; plain `IQ4_NL` dropped to 0.867. Now a mixed-quant recipe looked like the winner. | |
| **Phase 3 β 40-recipe broad search.** Returned all-zero. Root cause was a **harness bug** (the eval script imports a `config.json` that was not copied into the eval root), not real scores. | |
| **Phase 4 β search re-gate (bug fixed).** Re-scored all 53 candidates correctly. No new recipe beat the curated originals; the broad search does not help this merge. | |
| **Phase 5 β discipline + agentic process.** Plain `IQ4_NL` and BF16 led the action-first *discipline* rubric (0.931); `c76` led *process efficiency* (fewest turns/tools/errors). | |
| **Overnight 2 β base-precision Γ attention-promotion matrix (3 seeds).** Decomposed the build/discipline tradeoff. No candidate clears "both" (build β₯ 0.90 **and** discipline β₯ 0.90): | |
| - promotion destroys discipline regardless of base precision | |
| - uniform higher precision does **not** fix build (build is not precision-limited) | |
| **Confirm β 5-seed, same-condition, baseline vs c76 head-to-head.** The decisive run: | |
| | candidate | build (5-seed) | long-context | discipline (5-seed) | size | | |
| |---|---:|---:|---:|---:| | |
| | **plain IQ4_NL (reasoning imx)** | 0.920 (Β±0.067) | 0.975 | 0.842 (Β±0.333) | 16.6 G | | |
| | c76 (promoted attn) | 0.907 (Β±0.067) | 0.935 | 0.867 (Β±0.292) | 20 G | | |
| build gap `0.013` βͺ `0.067` noise floor β **not discriminating**. c76's earlier "0.933 build win" did not reproduce (it scored 0.933 β 0.867 β 0.907 across passes β pure run-to-run variance). | |
| **Q8 confirm β 5-seed, near-lossless Q8 vs plain IQ4_NL.** Q8 shows no edge on any axis and is ~2Γ the size β ruled out. Near-lossless precision buys nothing measurable here. | |
| **Behaviour rubric β PatchCode vs the base it was distilled from.** A 15-case rubric (action-first style + coding discipline + held-out generalization) was run across merge strengths, with the adapter disabled as the "strength 0" anchor β i.e. the SignalLatch base PatchCode was built on. PatchCode at the chosen Ξ»=0.5 beat the base on score while emitting far fewer tokens: | |
| | variant (15-case rubric) | score | avg output tokens | avg time/case | | |
| |---|---:|---:|---:| | |
| | base (adapter off = SignalLatch) | `0.486` | `311` | `34s` | | |
| | PatchCode (ckpt-3661 @ Ξ»=0.5) | `0.617` | `91` | `13s` | | |
| The base tended to ramble (~311 tokens of hedging preamble β e.g. it scored 0.20 on the coding-discipline case with "I might overwrite the user's changesβ¦"); PatchCode was terse and on-target (~91 tokens) and scored higher. That is the distil's intended effect: more disciplined execution, less wasted output. Caveats: this is a behaviour rubric, not a multi-turn agent turn-count; Ξ»=0.5 is the sweet spot β higher strengths (0.7 / 1.0 / 1.3) also got terse (~60 tokens) but fell *below* the base (0.39β0.49), so terseness alone is not the win; single-temperature, small per-category N. | |
| ## The noise lesson (critical β reuse for every future bake-off) | |
| The SignalLatch-style suite is **noisier than it looked**: | |
| - KritaLite build: Β±0.067β0.13 **run-to-run** variance (beyond seed). c76 scored 0.933 β 0.867 β 0.907 on the same gguf. | |
| - discipline: Β±0.3 spread. | |
| - build is **ceiling-limited** (max 0.933 = 14/15) β zero headroom to discriminate two good quants. | |
| **Rule:** 3-seed differences <0.13 on this suite are meaningless. Use **5+ seeds, same-condition head-to-head** before any ship call. Only non-noise axes (size, recipe methodology/safety, long-context at ceiling) reliably tiebreak. HumanEval was rejected β it saturates on Qwen and is the wrong mode for an agent. | |
| This is exactly how a 3-seed pass almost shipped the *weaker* model. | |
| ## The ship decision | |
| With build, discipline, and long-context all **tied within noise**, the decision fell to non-noise axes, where plain `IQ4_NL` wins all three: | |
|  | |
|  | |
| - **smaller** (16.6 G vs 20β29 G) | |
| - **marginal long-context** edge (0.975 vs 0.935β0.969) | |
| - **plain-quant recipe** β the fleet's proven pattern; promotion/mixed recipes carry evidence-harmful risk (discipline collapse) for zero measured benefit | |
| Ship: **plain `IQ4_NL` (reasoning-imatrix)**. The mixed-recipe `c76` is retained on disk as the build-heavy fallback if a future, harder build-gate ever discriminates beyond the noise floor (use 5+ seeds). | |
| ## What the testing says and does not say | |
| **Does say:** | |
| - PatchCode's distilled action-first discipline is preserved through `IQ4_NL` (tied with BF16 across build / long-context / discipline). | |
| - Near-lossless precision (Q8) and attention promotion buy no measurable edge on this suite. | |
| - Plain `IQ4_NL` is the defensible default on size + recipe safety. | |
| **Does not say:** | |
| - It does not prove PatchCode is better for all tasks. | |
| - It does not prove plain `IQ4_NL` is globally optimal. | |
| - It does not make this a stock `llama.cpp` / `vLLM` release. | |
| - It does not make live LoRA loading the recommended serving setup. | |
| The most accurate public sentence: | |
| > On a 5-seed, same-condition practical coding-agent bake-off, PatchCode plain `IQ4_NL` tied BF16 within noise on build, long-context, and discipline, and was the selected default on size and recipe safety. | |
| ## Selected artifact | |
| ```text | |
| Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.IQ4_NL.gguf (16.6 GB β recommended) | |
| Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.BF16.gguf (57.6 GB β source-quality reference) | |
| ``` | |
| Recommended runtime: `https://github.com/noonr48/qwen36-aeon-ik-llama` | |
| ```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.7 --jinja --reasoning-format deepseek --reasoning-budget 0 | |
| ``` | |
| (`<think>` is emitted as a separate `reasoning_content` field β use `--reasoning-format deepseek` or fold it back so tool-action parsing sees the action.) | |
| ## Final read | |
| This was not a clean leaderboard. It was a real engineering pass: distil the style, build a hardened discriminator because the easy gates saturated, get fooled by a one-run perfect build score, repeat the finalists same-condition, discover the build is ceiling-limited and noisy, and ship the smallest plain-quant that ties everything within noise. | |
| ```text | |
| PatchCode IQ4_NL is a practical agentic-coder upgrade over the SignalLatch release. | |
| It is the selected default among the tested quants, tied with BF16 within noise β | |
| not a universal final answer. | |
| ``` | |