Canonical:
kevinqz/Qwen3-0.6B-CoreAIβ source of truth.
Qwen3 0.6B (fabric, int8)
Apple Core AI chat model β runs fully on-device on Apple Silicon (iPhone / iPad / Mac, macOS/iOS 27+).
A quantized stateful KV-cache chat .aimodel β an Apple Core AI conversion of
Qwen/Qwen3-0.6B, with an embedded
tokenizer + chat template. Produced by
coreai-fabric and indexed by
coreai-catalog.
Model facts
| Field | Value |
|---|---|
| Parameters | 0.6B |
| Architecture | transformer |
| Capabilities | chat, text-generation |
| Quantization / precision | int8 / float16 |
| Context length | 8192 |
| On-disk size | 605 MB |
| Asset kind | stateful KV-cache chat bundle; embedded tokenizer + chat template |
| assetVersion | 2.0 |
Use it
Install via the catalog, then run it with Apple's Foundation Models runtime:
pip install coreai-catalog && coreai-catalog install qwen3-0.6b-int8
import CoreAILanguageModels
import FoundationModels
// modelURL = the installed macos/ bundle directory for this model
let model = try await CoreAILanguageModel(resourcesAt: modelURL)
let session = LanguageModelSession(model: model)
let reply = try await session.respond(to: "Explain on-device AI in one sentence.")
print(reply)
A complete, buildable example lives at coreai-catalog/examples/llm-chat.
Requirements
- Deployment: macOS 27.0+ / iOS 27.0+, Xcode 27+. The asset serializes with
minimum_os v27, so the on-device Swift runtime requires macOS/iOS 27+. - A Mac on macOS 26 can convert and inspect the asset but cannot run it on-device (the Swift runtime needs the 27 SDK).
- Apple Silicon.
Intended use & limitations
- Intended use: general on-device chat / text generation. Inherits the base model's capabilities, languages, and biases.
- Limitations: int8 quantized β the high-fidelity tier. Fidelity is measured, not assumed: see the Evaluation section for the token-margin greedy fidelity vs the fp16 reference. "Near-lossless" is not claimed β it reports argmax agreement, not a task-quality guarantee. See the Evaluation section for the measured greedy fidelity vs the fp16 reference.
Evaluation (parity)
- Gate A (structure): passed β the bundle's layout + metadata were validated on real hardware (Apple Silicon); the asset loads and generates.
- Gate B β greedy fidelity vs the fp16 reference: 100.0% margin-gated (95% CI 92.6β100.0%) Β· 95.8% exact-argmax Β· 100.0% top-5, over 48 teacher-forced tokens, measured on-device (Apple Silicon, macOS 26). Margin-gated forgives near-tie flips (where even the reference flips on rounding noise). This is fidelity to the reference, not a quality verdict. Reproduce with
coreai-fabric verify+ the parity runner (parity-report.json).- Sample β prompt
The capital of France isβ asset:Paris. The capital of France is Rome. The capital of
- Sample β prompt
- Validation lineage (full disclosure): an earlier static-logits-graph parity run (2026-07-03) measured
per_token_logit_cosine = 0.9966β below the 0.999 convention threshold, with a greedy-token divergence β and was recorded honestly as a Gate B failure in the fabric validation log. The metrics above come from the production stateful KV-cache asset (coreai.llm.export, run later the same day) under a token-margin protocol (argmax fidelity), a different asset layout and metric than the strict static-graph logit-cosine bar. Both are real measurements of different things: a plain fp16 static graph does not clear the 0.999 logit-cosine bar against an fp32 reference, while the production asset passes the token-margin bar. - Runtime throughput (tok/s): to be published once measured on the on-device (macOS/iOS 27) Swift runtime. Not estimated β real numbers or none.
Provenance
| Field | Value |
|---|---|
| Base model | Qwen/Qwen3-0.6B @ c1899de289a04d12100db370d81485cdf75e47ca |
| Converted by | coreai.llm.export (version not reported) |
| Recipe | qwen3-0.6b-int8 (recipe_source: fabric) |
| Precision / quantization | float16 / int8 |
| Conversion date | 2026-07-04 |
Machine-readable, in this repo:
parity-report.json (gate results) Β·
reproduce-manifest.json (exact tool + stack + pinned
revision to reproduce this conversion) Β· LICENSE (upstream terms).
License and attribution
Weights Β© 2024 Alibaba Cloud, licensed apache-2.0 β see the bundled LICENSE. This artifact is a converted + quantized derivative of the base
model (the Apache-2.0 Β§4(b) change notice): weights were converted to Apple Core
AI format and quantized to int8. The conversion itself is community work.
Links
- Base model: Qwen/Qwen3-0.6B
- Reproduce: recipe
qwen3-0.6b-int8Β· runnable example - Index: coreai-catalog β the neutral registry that ties upstream β this asset β mirror together
- HF Collection
The on-device Core AI ecosystem
This conversion is part of a broader open ecosystem for running models on Apple's on-device stack β useful references if you're building here:
- coreai-fabric β the reproducible
recipe β
.aimodelpipeline that produced this asset. - coreai-catalog β the index of Core AI models across the community, with provenance and integration snippets.
- apple/coreai-models β Apple's official exporters and runtimes.
- CoreAI Model Zoo and the wider coreai-community β community conversions across many model families.
Not affiliated with Apple
Community conversion. Not produced, hosted, or endorsed by Apple. Apple and Core AI are trademarks of Apple Inc., used here only to describe the target runtime/format. This is an independent community conversion.