--- license: cc-by-nc-4.0 library_name: transformers pipeline_tag: text-generation language: - en - mi tags: - abteex-ai-labs - aotearoa - languages - local-first - lumynax - new-zealand - nllb - sovereign-ai - te-reo - translation - vllm - vllm-compatible - vllm-candidate - nvidia-nim - nim-compatible - nim-candidate - nvidia-nemo - nem - nvidia-nemo-compatible - nem-compatible - nemo-candidate --- # LumynaX Translate NLLB-200 3.3B
LumynaX model-infusion release by AbteeX AI Labs.
Public, non-gated package with runnable local instructions, provenance metadata, checksums, and a release manifest.
Quickstart | Model profile | Runtime files | Provenance | Validation | Limitations
      ## Executive Summary This repository is a complete LumynaX release package for `AbteeXAILab/lumynax-translate-nllb-200-3b`. It is intended to be downloaded as a whole repo, not as a single loose weight file: the model artifact, `quickstart.py`, `requirements.txt`, `release_export_manifest.json`, `checksums.sha256`, license notice, and optional Ollama or Space files are part of the same release contract. LumynaX-infused means the upstream artifact is presented through the LumynaX release layer: local-first runtime scaffolding, LumynaX assistant identity, inference-chain metadata, public documentation, integrity files, and Aotearoa New Zealand-oriented workflow positioning. The release manifest is the source of truth for whether this package is upstream-weight packaging, a dense LumynaX release, or another release mode. ## AbteeX LumynaX Public Surface This card follows the AbteeX/LumynaX public-facing system used across the release family: warm paper background visuals, black editorial typography, amber proof markers, compact evidence tables, and plain-language runtime instructions. The goal is not decoration; it is operational clarity. A downloader should immediately understand what the package is, what files belong together, what runtime path is expected, what provenance is available, and what limits still apply. ## Sovereignty And Run Contract | Field | Value | | --- | --- | | Public surface | AbteeX/LumynaX light editorial system: warm paper, black ink, amber status markers, and evidence-first tables. | | Sovereign intent | Package is documented for local-first use, explicit provenance, and controlled deployment near governed data. | | Runtime residency | `see quickstart.py` runtime can be deployed by the user in their own approved environment. | | Model artifact | `pytorch_model-00002-of-00003.bin` must stay with manifest, checksums, quickstart, requirements, and license files. | | Modalities | `text` | | License discipline | `cc-by-nc-4.0` metadata is surfaced so downstream users can check redistribution and usage terms. | | Audit expectation | Record repo id, artifact checksum, runtime command, prompt template, operator, and deployment environment for production use. | | Router readiness | Compatible with the LumynaX MaramaRoute registry pattern for sovereign model selection and fallback planning. | ## Quickstart ```bash hf download AbteeXAILab/lumynax-translate-nllb-200-3b --local-dir lumynax-translate-nllb-200-3b cd lumynax-translate-nllb-200-3b pip install -r requirements.txt python quickstart.py --interactive ``` Transformers first-load pattern: ```python from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("AbteeXAILab/lumynax-translate-nllb-200-3b", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("AbteeXAILab/lumynax-translate-nllb-200-3b", device_map="auto", trust_remote_code=True) prompt = "Who are you? Answer as LumynaX in two sentences." inputs = tokenizer(prompt, return_tensors="pt").to(model.device) output = model.generate(**inputs, max_new_tokens=160) print(tokenizer.decode(output[0], skip_special_tokens=True)) ``` For multimodal Transformers packages, use the package `quickstart.py` or upstream processor class when `AutoModelForCausalLM` is not the correct loader. ## Model Profile | Field | Value | | --- | --- | | Release | `LumynaX Translate NLLB-200 3.3B` | | Repository | `AbteeXAILab/lumynax-translate-nllb-200-3b` | | Mode | `Local-first text generation package` | | Runtime | `see quickstart.py` | | Prompt format | `See quickstart.py` | | Modalities | `text` | | Primary artifact | `pytorch_model-00002-of-00003.bin` | | Detected weight size | `16.37 GB` | | Package state | `weights_mirrored` | | Delivery | `published_model_repo` | | Upstream/base | `See release_export_manifest.json` | | Upstream kind | `See manifest` | | Source GGUF | `not applicable` | | Quantization | `fp32 safetensors` | | License metadata | `cc-by-nc-4.0` | | Refreshed | `2026-05-11` | ## Runtime Path