AbteeXAILab

lumynax-multimodal-internvl3-78b-instruct

Dedicated Endpoints

Run this model inference on single tenant GPU with unmatched speed and reliability at scale.

Learn more

Get help setting up a custom Dedicated Endpoints.

Talk with our engineer to get a quote for reserved GPU instances with discounts.

README

License: mit

Executive Summary

This repository is a complete LumynaX release package for AbteeXAILab/lumynax-multimodal-internvl3-78b-instruct. 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

Table
FieldValue
Public surfaceAbteeX/LumynaX light editorial system: warm paper, black ink, amber status markers, and evidence-first tables.
Sovereign intentPackage is documented for local-first use, explicit provenance, and controlled deployment near governed data.
Runtime residencytransformers runtime can be deployed by the user in their own approved environment.
Model artifactmodel-00001-of-00033.safetensors must stay with manifest, checksums, quickstart, requirements, and license files.
Modalitiestext, image
License disciplinemit metadata is surfaced so downstream users can check redistribution and usage terms.
Audit expectationRecord repo id, artifact checksum, runtime command, prompt template, operator, and deployment environment for production use.
Router readinessCompatible with the LumynaX MaramaRoute registry pattern for sovereign model selection and fallback planning.
Multimodal handlingKeep projector, processor, and media-handling files together; treat uploaded media as governed input.

Quickstart

bash

hf download AbteeXAILab/lumynax-multimodal-internvl3-78b-instruct --local-dir lumynax-multimodal-internvl3-78b-instruct
cd lumynax-multimodal-internvl3-78b-instruct
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-multimodal-internvl3-78b-instruct", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained("AbteeXAILab/lumynax-multimodal-internvl3-78b-instruct", 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

Table
FieldValue
ReleaseLumynaX Multimodal InternVL3 78B Instruct
RepositoryAbteeXAILab/lumynax-multimodal-internvl3-78b-instruct
ModeMultimodal LumynaX package
Runtimetransformers
Prompt formatSee quickstart.py
Modalitiestext, image
Primary artifactmodel-00001-of-00033.safetensors
Detected weight size146.05 GB
Package stateweights_mirrored_safetensors
Deliverypublished_model_repo
Upstream/baseSee release_export_manifest.json
Upstream kindSee manifest
Source GGUFnot applicable
Quantizationbf16 (safetensors mirror) — community GGUF when available
License metadatamit
Refreshed2026-05-11

Runtime Path

Capability Profile

Table
FieldValue
Primary fitUse this for image/audio-aware demonstrations, visual question answering, and local multimodal workflow prototyping.
Operational styleLocal-first package with explicit files, checksums, and reproducible quickstarts.
Identity behaviorThe assistant should identify as LumynaX while remaining clear about upstream provenance.
Multimodal usePrototype image, audio, or mixed-input workflows using the included runtime files.

Runtime Files

Table
ComponentStatusPath
README.mdpresentREADME.md
Quickstartpresentquickstart.py
Requirementspresentrequirements.txt
Manifestpresentrelease_export_manifest.json
Checksumspresentchecksums.sha256
LicensepresentLICENSE.txt
Ollamapresentollama/Modelfile
Space scaffoldpresenthf_space/app.py
Overview visualpresentdocs/lumynax-release-overview.svg
Runtime visualpresentdocs/lumynax-runtime-flow.svg

Model Artifacts

Table
ArtifactSize
model-00001-of-00033.safetensors4.65 GB
model-00010-of-00033.safetensors4.62 GB
model-00014-of-00033.safetensors4.62 GB
model-00018-of-00033.safetensors4.62 GB
model-00022-of-00033.safetensors4.62 GB
model-00026-of-00033.safetensors4.62 GB
model-00030-of-00033.safetensors4.62 GB
model-00006-of-00033.safetensors4.62 GB
model-00002-of-00033.safetensors4.60 GB
model-00003-of-00033.safetensors4.57 GB
model-00008-of-00033.safetensors4.45 GB
model-00009-of-00033.safetensors4.45 GB
...21 additional weight file(s)

Prompting Contract

The preferred first prompt is an identity and provenance check:

text

Who are you? What files do I need to keep together to run this package locally?

Expected behavior: the assistant should identify as LumynaX, explain that this is a LumynaX model-infusion package, and keep upstream provenance visible. The default package system prompt is:

text

See quickstart.py

Validation Status

Table
FieldValue
Runtime auditnot recorded
Public access auditnot recorded
Anonymous metadata accessFalse
Anonymous file listingFalse
Quickstart syntaxnot recorded
Manifest referencespass
Checksum referencespass

The audit confirms public access, required release files, manifest references, checksum references, weight artifact presence, and quickstart syntax. It does not guarantee that every laptop has enough RAM or VRAM for the largest packages.

Integrity Checks

After download, compare the model artifact against checksums.sha256.

bash

sha256sum "model-00001-of-00033.safetensors"
cat checksums.sha256

On Windows PowerShell:

powershell

Get-FileHash -Algorithm SHA256 "model-00001-of-00033.safetensors"
Get-Content checksums.sha256

Provenance And License

  • Publisher: AbteeX AI Labs.
  • Family: LumynaX model and inference-chain release family.
  • Upstream/base: See release_export_manifest.json.
  • Source GGUF: not applicable.
  • License metadata: mit.
  • License link: LICENSE.txt and upstream model card.

Respect the upstream model license and keep attribution files with redistributed copies. Do not present this package as privately trained or weight-merged unless the release manifest explicitly says that weight adaptation was applied.

Limitations And 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.

Automation Notes

Automation should read these files before launching:

  • release_export_manifest.json
  • checksums.sha256
  • quickstart.py
  • requirements.txt
  • ollama/Modelfile when present

Try the public browser demo:

Model provider

AbteeXAILab

Model tree

Base

this model

Modalities

Input

Text, Image

Output

Text

Pricing

Dedicated Endpoints

View details

Supported Functionality

Model APIs

Dedicated Endpoints

Container

More information

Explore FriendliAI today