7 Downloads Updated 6 days ago
ollama run RingoSystems/ringollm-v42:4.2
A LoRA fine-tune of Qwen3.6-27B specialised for Windows endpoint management, quantized to Q5_K_M (19 GB).
In scope: DSC v3, DSC Legacy, PowerShell 7, Intune deployment (Settings Catalog, OMA-URI, IME, Win32 packaging, Proactive Remediations), and endpoint-side Entra ID diagnostics.
Deliberately out of scope: Graph SDK administration, KQL/Sentinel, WDAC/App Control, Cisco and network appliances, Linux, macOS. The model is trained to refuse these rather than guess, and it will.
ollama run ringosystems/ringollm-v42:4.2
The model ships with its system prompt baked in. Send no system message unless you intend to replace the scope definition and refusal behaviour entirely.
Earlier builds emitted securityContext: Elevated in DSC v3 documents. That is schema-invalid.
dsc-lib declares the enum as:
#[serde(rename_all = "camelCase")]
pub enum SecurityContextKind { Current, Elevated, Restricted }
On single-word variants rename_all = "camelCase" accepts only the lowercase form. The JSON
schema agrees (enum: ["current","elevated","restricted"]), as do DSC’s own shipped examples.
Microsoft Learn’s ValidValues table lists the capitalised spellings and is wrong — that table
is the origin of the bug.
Measured on a 25-question rubric (129 checks, greedy decoding), against the previous release:
| previous | v4.2 | |
|---|---|---|
| rubric checks | 110⁄129 (85.3%) | 112⁄129 (86.8%) |
| questions fully passed | 14⁄25 | 17⁄25 |
securityContext valid / invalid |
0 / 6 | 8 / 0 |
| out-of-scope refusals | 4⁄5 | 5⁄5 |
The previous release emitted an invalid securityContext on every DSC document it produced —
six for six, never once correct. This one is eight for eight correct.
Prompt: Write a minimal DSC v3 YAML configuration that requires elevation.
$schema: https://aka.ms/dsc/schemas/v3/bundled/config/document.json
metadata:
Microsoft.DSC:
securityContext: elevated
resources: []
Note the lowercase elevated.
Baked into the model, override as needed:
| parameter | value |
|---|---|
temperature |
0.3 |
top_p |
0.9 |
repeat_penalty |
1.15 |
repeat_last_n |
256 |
num_ctx |
65536 |
num_predict |
2048 |
Q&A pairs are derived from Microsoft documentation, the DSC resource registry and the published JSON schemas via deterministic builders. No LLM-generated text is present in the training data — reasoning traces were removed before training, which also matches how the model is served (reasoning suppressed).
<think> block.Apache 2.0, inherited from Qwen3.6-27B. Built from the unsloth mirror.