--- license: apache-2.0 library_name: llama.cpp pipeline_tag: text-generation language: - en - mi tags: - abteex-ai-labs - aotearoa - general - gguf - local-first - lumynax - new-zealand - smollm - sovereign-ai - text ---

LumynaX Infused SmolLM2 360M Instruct GGUF release overview

LumynaX Infused SmolLM2 360M Instruct GGUF

“Sovereign intelligence, held in the light.”
Ko te mārama te tūāpapa — the light is the foundation.

A LumynaX release from AbteeX AI Labs — Aotearoa New Zealand.

Quickstart · Architecture · Profile · Capability · Provenance · Validation · Companions

LumynaX: release Family: smollm Runtime: llama%20cpp Modes: text Params: see%20manifest Quant: Q8_0 Context: 8192%20tok License: apache-2.0 Sovereignty: tier%203 Audit: pass Access: public%20&%20non--gated Card: v6

Quality: 1/5 · Lightweight: 4/5 · Sovereignty: 3/5 · Tools: no · JSON: yes · Context: 8192 tok

--- ## ๐Ÿ“ฆ Executive Summary > `AbteeXAILab/lumynax-infused-smollm2-360m-gguf` is a **complete LumynaX release package**: model artifact, `quickstart.py`, `requirements.txt`, `release_export_manifest.json`, `checksums.sha256`, license notice, and optional Ollama / Space scaffolds shipped as **one downloadable contract**. Clone whole, verify by checksum, and run close to the data it serves. > **LumynaX-infused** means the upstream artifact is presented through the LumynaX release layer: local-first runtime scaffolding, LumynaX assistant identity, inference-chain metadata, integrity files, and Aotearoa New Zealand-oriented workflow positioning. The release manifest records this as a LumynaX *packaging and inference-chain layer* around the listed upstream artifact — it does **not** claim a private LumynaX weight merge. ## ๐Ÿงญ Runtime Architecture

LumynaX runtime flow

Mermaid graph (interactive on Hugging Face & GitHub): ```mermaid flowchart LR R["โฎ• Request"] --> C["๐Ÿ›ก Data Capsule
policy envelope"] C -->|allow| MR["๐Ÿงญ MaramaRoute
sovereign router"] MR -->|score & select| LLM[(LumynaX Model)] LLM --> O["๐Ÿ“ค Response"] O --> A["๐Ÿ““ Audit Ledger
hash-chained"] classDef paper fill:#fffefa,stroke:#0a0a0b,color:#0a0a0b,stroke-width:1.4px; classDef accent fill:#e08a2c,stroke:#9a5416,color:#0a0a0b,stroke-width:1.4px; classDef ink fill:#0a0a0b,stroke:#0a0a0b,color:#fffefa,stroke-width:1.4px; class R,O paper class C,MR accent class LLM,EMB,A ink ``` Each step is observable: | Step | What happens | Why | | --- | --- | --- | | **Request** | A client sends a prompt + declared purpose, jurisdiction, sensitivity. | Intent must be declared, not inferred. | | **Data Capsule** | A policy envelope describes what can / cannot happen to the data. | Sovereignty is enforced at the data, not the wire. | | **MaramaRoute** | The sovereign router scores candidates by jurisdiction, runtime, modality, task fit. | Right model for the work, not the loudest. | | **LumynaX Model** | This package serves the inference, local-first by default. | Sensitive context never leaves the operator’s environment. | | **Audit Ledger** | A hash-chained record persists capsule, decision, request hash, obligations. | Tamper-evident provenance for the whole trace. | ## โšก Quickstart **Clone the whole release** โ€” every file matters, the package is a contract: ```bash hf download AbteeXAILab/lumynax-infused-smollm2-360m-gguf --local-dir lumynax-infused-smollm2-360m-gguf cd lumynax-infused-smollm2-360m-gguf pip install -r requirements.txt python quickstart.py --interactive ``` **Python:** ```python from llama_cpp import Llama llm = Llama(model_path="smollm2-360m-instruct-q8_0.gguf", n_ctx=8192, n_threads=8, verbose=False) out = llm("Who are you? Answer as LumynaX in two sentences.", max_tokens=160) print(out["choices"][0]["text"].strip()) ``` **CLI smoke test:** ```bash llama-cli -m "smollm2-360m-instruct-q8_0.gguf" -p "Who are you? Answer as LumynaX in two sentences." -n 160 ``` **Ollama path:** ```bash ollama create lumynax-infused-smollm2-360m-gguf -f ollama/Modelfile ollama run lumynax-infused-smollm2-360m-gguf ``` **Verify integrity before launch:** ```bash sha256sum "smollm2-360m-instruct-q8_0.gguf" cat checksums.sha256 ``` ```powershell Get-FileHash -Algorithm SHA256 "smollm2-360m-instruct-q8_0.gguf" Get-Content checksums.sha256 ``` ## ๐Ÿ“ Model Profile
**Release identity** | Field | Value | | --- | --- | | Release | `LumynaX Infused SmolLM2 360M Instruct GGUF` | | Repository | `AbteeXAILab/lumynax-infused-smollm2-360m-gguf` | | Family | `smollm` | | Mode | `Local-first text generation package` | | Card schema | `lumynax-public-release-card:v6` | **Runtime profile** | Field | Value | | --- | --- | | Runtime | `llama_cpp` | | Prompt format | `chatml` | | Modalities | `text` | | Context window | `8192` tokens | | Quantization | `Q8_0` |
**Artifact** | Field | Value | | --- | --- | | Primary | `smollm2-360m-instruct-q8_0.gguf` | | Weight size | `368.50 MB` | | Parameters | `see manifest` | | Quality rank | `5` (1 best) | | Cost rank | `2` (1 cheapest) | **Provenance** | Field | Value | | --- | --- | | Upstream / base | `HuggingFaceTB/SmolLM2-360M-Instruct` | | Source | `HuggingFaceTB/SmolLM2-360M-Instruct-GGUF` | | License | `apache-2.0` | | Sovereignty tier | `3` of 5 | | Audit | `pass` |
## ๐Ÿ“Š Capability Profile

Capability profile bars

> **Primary fit.** Conversational assistance near governed data, with provenance visible and human review on high-impact tasks. | Signal | Reading | | --- | --- | | Quality rank | `5` (1 = strongest in family) | | Cost rank | `2` (1 = lightest weight) | | Sovereignty tier | `3` of 5 | | Tool calling | โŒ not supported | | JSON mode | โœ… supported | | Identity behaviour | Identifies as LumynaX while keeping upstream provenance visible. | | Operational style | Local-first package with explicit files, checksums, and reproducible quickstarts. | ## ๐Ÿ›ก๏ธ Sovereignty Contract > **Sovereignty is a design property, not a deployment option.** | Field | Value | | --- | --- | | Publisher | AbteeX AI Labs | | Family | LumynaX sovereign release family | | Sovereign intent | Local-first deployment near governed data, with explicit provenance and controlled human review. | | Sovereignty tier | `3` of 5 | | Runtime residency | `llama_cpp` can be deployed inside an operator-approved environment. | | Primary artifact | `smollm2-360m-instruct-q8_0.gguf` — ships alongside manifest, checksums, quickstart, requirements, and license files. | | License discipline | Surface upstream license metadata so downstream users can verify redistribution and usage terms. | | Audit expectation | Record repo id, artifact checksum, runtime command, prompt template, operator, deployment environment. | | Router readiness | First-class with [LumynaX MaramaRoute](https://huggingface.co/AbteeXAILab/marama-route). | | Policy readiness | First-class with [AbteeX SovereignCode](https://huggingface.co/AbteeXAILab/sovereigncode). | ## ๐Ÿ“ Runtime Files ```text lumynax-infused-smollm2-360m-gguf/ โ”œโ”€โ”€ README.md # this card โ”œโ”€โ”€ quickstart.py # smoke runner โ”œโ”€โ”€ requirements.txt # pinned deps โ”œโ”€โ”€ release_export_manifest.json # full release metadata โ”œโ”€โ”€ checksums.sha256 # integrity verification โ”œโ”€โ”€ LICENSE.txt # license notice โ”œโ”€โ”€ ollama/Modelfile # optional Ollama runtime โ”œโ”€โ”€ hf_space/app.py # optional Space scaffold โ”œโ”€โ”€ docs/lumynax-overview.svg # release banner โ”œโ”€โ”€ docs/lumynax-runtime-flow.svg # runtime architecture โ”œโ”€โ”€ docs/lumynax-capability.svg # capability profile โ””โ”€โ”€ smollm2-360m-instruct-q8_0.gguf # primary artifact ``` โš ๏ธ **Keep the full set together.** Removing the manifest, checksums, or license file breaks the release contract. ## ๐Ÿ’ฌ Prompting Contract **Preferred opening prompt:** ```text Who are you? What files do I need to keep together to run this package locally? ``` > **Expected behaviour.** The assistant identifies as LumynaX, explains that this is a LumynaX model-infusion release, and keeps upstream provenance visible. **Default system prompt:** ```text You are LumynaX operating from the LumynaX Infused SmolLM2 360M Instruct GGUF package identity. Be helpful, clear, and honest about provenance. Identify upstream models when asked. Do not invent biographical claims about named people without verified context. ``` ## โœ… Validation | Check | Result | | --- | --- | | Runtime audit | โœ… `pass` | | Public access | โœ… `public and non-gated` | | Anonymous metadata access | โœ… `true` | | Anonymous file listing | โœ… `true` | | Quickstart syntax | โœ… `pass` | | Manifest references | โœ… `pass` | | Checksum references | โœ… `pass` | > The audit confirms public access, release files, manifest references, checksum references, weight artifact presence, and quickstart syntax. It does **not** guarantee that every laptop has enough RAM, VRAM, disk, or recent runtime build for the largest packages. ## ๐Ÿ”— Provenance & License | Field | Value | | --- | --- | | **Publisher** | AbteeX AI Labs | | **Family** | LumynaX model and inference-chain release family | | **Upstream / base** | `HuggingFaceTB/SmolLM2-360M-Instruct` | | **Source** | `HuggingFaceTB/SmolLM2-360M-Instruct-GGUF` | | **License metadata** | `apache-2.0` | > **Respect the upstream model licence** and keep attribution files with redistributed copies. Do not present this package as privately trained or weight-merged unless the release manifest explicitly says weight adaptation was applied. ## โš ๏ธ Limitations & Responsible Use - Outputs can be **incorrect, incomplete, or biased**; validate important answers before use. - Larger GGUF, MoE, multimodal, and frontier packages may require **substantial RAM, VRAM, disk space, and recent runtime builds**. - For high-impact decisions, use **human review** and domain-specific evaluation. - For sensitive data, prefer **local execution** and keep operational logs under your own governance policy. - This card documents **package readiness and access** — it is *not* a benchmark claim. - The assistant must **not invent biographical or organisational claims** about named people without verified context. ## ๐ŸŒฟ Aotearoa Kaupapa > LumynaX is built **in and for Aotearoa New Zealand**. Sovereignty is treated as a design property rather than a deployment option: the package documents where the model came from, what it can do, how to run it close to your data, and what it should not claim. > *Ko te mฤrama te tลซฤpapa* — the light is the foundation. ## ๐Ÿค Companion Products

๐Ÿ›ก๏ธ

AbteeX SovereignCode

Local-first coding agent with Data Capsule policy controls, audit ledger, and human-review gates.

๐Ÿงญ

LumynaX MaramaRoute

Sovereign model router across the LumynaX family. Filters by jurisdiction, residency, license, runtime, modality.

๐Ÿ’ก

LumynaX Live Demo

Public browser demo. Try identity, provenance, governance, and deployment prompts in one session.

SovereignCode Live

Interactive policy evaluator.

MaramaRoute Live

Interactive sovereign router.

AbteeXAILab on HF

The full LumynaX release family — 50 models and counting.

## ๐Ÿค– Automation Notes Automation should read these files before launching: - `release_export_manifest.json` - `checksums.sha256` - `quickstart.py` - `requirements.txt` - `ollama/Modelfile` when present ---

Local roots, global work. · Sovereignty is a design property, not a deployment option.

abteex.com · lumynax.com · huggingface.co/AbteeXAILab

AbteeX AI Labs · Aotearoa New Zealand · LumynaX release card v6

--- ## ๐Ÿ‡ณ๐Ÿ‡ฟ Made in Aotearoa New Zealand This model is part of the **LumynaX release family** from **AbteeX AI Labs**, an Aotearoa New Zealand AI lab focused on sovereign, local-first intelligence with provenance, audit trails, and jurisdiction-aware routing. > *Ko te mฤrama te tลซฤpapa โ€” the light is the foundation.* | Resource | Link | | --- | --- | | ๐Ÿ  AbteeX AI Labs | [abteex.com](https://abteex.com) | | ๐ŸŒŸ LumynaX family | [lumynax.com](https://lumynax.com) | | ๐Ÿค— Hugging Face org | [huggingface.co/AbteeXAILab](https://huggingface.co/AbteeXAILab) | | ๐Ÿ™ Monorepo | [github.com/Aimaghsoodi/lumynax-release](https://github.com/Aimaghsoodi/lumynax-release) | | ๐Ÿ“ฆ Per-model GitHub | [github.com/aimaghsoodi/lumynax-infused-smollm2-360m-gguf](https://github.com/aimaghsoodi/lumynax-infused-smollm2-360m-gguf) | | ๐Ÿงญ Routing | `lumynax route "" --local` (via [`lumynax` CLI](https://github.com/Aimaghsoodi/lumynax-release/tree/main/tools/lumynax-cli)) | | ๐Ÿ›ก๏ธ Policy + audit | [SovereignCode](https://huggingface.co/AbteeXAILab/sovereigncode) + [MaramaRoute](https://huggingface.co/AbteeXAILab/marama-route) | | ๐Ÿ”Œ Run via OpenAI-compatible gateway | See [`DEPLOYMENT.md`](https://github.com/Aimaghsoodi/lumynax-release/blob/main/DEPLOYMENT.md) | ### Run this model ```bash # Fastest โ€” clone & run hf download AbteeXAILab/lumynax-infused-smollm2-360m-gguf --local-dir lumynax-infused-smollm2-360m-gguf cd lumynax-infused-smollm2-360m-gguf && pip install -r requirements.txt && python quickstart.py --interactive # Or via the LumynaX CLI pip install lumynax lumynax run lumynax-infused-smollm2-360m-gguf -i # Or as an OpenAI-compatible server (for OpenCode, Continue, Cursor, vLLM, LM Studio, etc.) lumynax serve lumynax-infused-smollm2-360m-gguf --port 8080 ``` ### Sovereignty contract - **Residency:** NZ - **Sovereignty tier:** 3 *(1 = remote frontier ยท 3 = local-runnable ยท 5 = NZ-resident only)* - **Jurisdiction:** NZ - **License:** see_model_card *(upstream weights retain upstream licence)* - **Audit:** SHA-256 hash-chained ledger via SovereignCode - **Routing:** Considered by MaramaRoute when matching task to model *Brought to you by Aotearoa New Zealand โ€” sovereign AI, held in the light.*