AbteeX AI Labs conversational CLI, model downloader, and router for the LumynaX Hugging Face model family. One install. 98 curated LumynaX model entries. Pick a model, pull files, then run it locally.
chat opens a conversational model picker and prompt loop. The picker starts with /help guidance before model results.catalog shows the bundled Hugging Face-backed LumynaX registry.pull downloads model files into the local MaramaRoute cache.verify can hash pulled artifacts and write local SHA256 manifests.run behaves like chat when no prompt is supplied, or returns one answer for one prompt.route, compare, matrix, and analytics explain which LumynaX model fits a request and why.serve starts the local browser console and route API for governed applications.agent and hpe commands prepare coding-agent and HPE/HPC operator workflows.| Category | Count | What it means |
|---|---|---|
| Bundled registry entries | 98 | Every entry can be searched, selected, pulled, inspected, and routed. |
| Direct local chat-capable entries | 68 | GGUF/llama.cpp entries that the CLI treats as direct chat models after pull. |
| GGUF artifacts | 65 | Quantized local artifacts; direct chat uses llama-cpp-python. |
| llama.cpp runtime entries | 65 | Primary direct local runtime path for GGUF chat models. |
| Transformers runtime entries | 21 | Selectable and pullable local runtime entries; useful chat depends on tokenizer support and model task. |
| vLLM-compatible/candidate entries | 69 | Production backend path; GGUF entries are marked experimental/candidate where tokenizer/config validation is required. |
| NVIDIA NIM-compatible/candidate entries | 73 | NIM deployment path; validate architecture, tokenizer, config, and folder layout before production. |
| NVIDIA NeMo/NEM entries | 73 | 5 direct-compatible plus 68 conversion-path entries. |
llama-cpp-python. A GGUF row may also carry vLLM, NIM, or NeMo/NEM metadata, but those labels mean deployment path, candidate, experimental support, or conversion path; operators should run MaramaRoute compat <model-id> before treating a backend as production-ready.1MaramaRoute categories
2MaramaRoute compat --target vllm --status usable
3MaramaRoute compat --target nim --status usable
4MaramaRoute compat --target nemo --status pathway
5MaramaRoute compat <model-id>pip install lumynax-marama-routenpm install -g lumynax-marama-route1MaramaRoute --help
2LumynaXRoute --help
3marama-route --help
4maramaroute --help
5lumynax-route --help
6lumynaxroute --help1pip install lumynax-marama-route
2
3# Start the conversational picker. It opens with options; use /help for commands.
4MaramaRoute chat
5
6# Or jump straight to a model by id or search fragment.
7MaramaRoute chat qwen25-05b
8
9# Create local config, default alias, coding-agent bridge files, and HPE scaffold.
10MaramaRoute setup --all-targets --hpe
11MaramaRoute agent doctor --model qwen25-7b
12
13# Inspect registry categories before choosing a model.
14MaramaRoute categories
15
16# Install local runtimes when you want direct generation.
17python -m pip install llama-cpp-python
18python -m pip install torch
19python -m pip install sentencepiece tiktoken tokenizers
20
21# Estimate, pull, verify, and chat.
22MaramaRoute pull qwen25-05b --estimate --remote-sizes
23MaramaRoute pull lumynax-coder-qwen25-05b-instruct-gguf
24MaramaRoute verify --deep --write-hashes
25MaramaRoute run lumynax-coder-qwen25-05b-instruct-ggufMaramaRoute pull, chat and run load local files only. GGUF models use llama-cpp-python; Transformers text-generation models use the bundled tokenizer support plus torch; embedding, reranker, OCR, speech, and other task entries stay offline and expose their task-model selection plus local file paths.lumynax-tiny-qwen25-05b-gguf. The lumynax-tiny Transformers seed is runnable, but it is labelled as smoke-test because it is meant for install/runtime checks rather than useful chat.1MaramaRoute compat
2MaramaRoute compat --target vllm --format json
3MaramaRoute compat --target nim --status candidate
4MaramaRoute compat lumynax-tiny-qwen25-05b-ggufllama_cpp, vllm, nvidia_nim, and nvidia_nemo. It uses supported, candidate, experimental, convert_required, and unsupported statuses so production users can distinguish direct local runtimes from backend-specific validation work.1MaramaRoute pull lumynax-coder-qwen25-05b-instruct-gguf --dry-run
2MaramaRoute local1/models show direct local GGUF chat-capable LumynaX models
2/hardware show models suitable for this machine
3/recommended show recommended local chat models
4/all show all 98 bundled AbteeXAILab Hugging Face registry entries
5/search qwen search model id, repo, family, or tags
6/categories show family/runtime/tag/modality/capability counts
7/families alias for /categories
8/family qwen filter the full registry to a family or category
9/next next page of model results
10/prev previous page of model results
11/menu return to the picker menu
12/switch change model
13/switch qwen switch directly by search text
14/pull download the selected model
15/pull qwen25 download another matching model and switch to it
16/local show pulled models
17/settings show current runtime settings
18/clear clear chat history
19/history show current chat history
20/save work save current chat history
21/load work load saved chat history
22/export work work.md export saved chat as markdown
23/info show the selected model card metadata
24/exit quit1# Download the primary GGUF artifact listed in the registry.
2MaramaRoute pull lumynax-coder-qwen25-05b-instruct-gguf
3
4# Non-GGUF task and Transformers entries pull a full local repo snapshot.
5MaramaRoute pull lumynax-embed-bge-m3
6
7# Download every file in the Hugging Face repo snapshot.
8MaramaRoute pull lumynax-coder-qwen25-05b-instruct-gguf --all-files
9
10# Use a custom cache directory.
11MaramaRoute pull lumynax-coder-qwen25-05b-instruct-gguf --cache-dir ./models
12
13# Batch-plan downloads by family/search/runtime before committing.
14MaramaRoute pull --search qwen --limit 3 --dry-run
15MaramaRoute pull --search embed --limit 3 --dry-run
16MaramaRoute pull --search qwen --chat-only --limit 3 --dry-run
17MaramaRoute pull --family qwen --limit 3 --yes
18MaramaRoute pull qwen25-05b --estimate
19MaramaRoute pull qwen25-05b --estimate --remote-sizes
20
21# Hash pulled files and write a local verification manifest.
22MaramaRoute verify --deep --write-hashes
23
24# Run locally after pull.
25MaramaRoute run lumynax-coder-qwen25-05b-instruct-gguf --stream "Write a tiny Python function."
26
27# Conversational loop; omit the prompt.
28MaramaRoute run lumynax-coder-qwen25-05b-instruct-gguf1# Install, registry, cache, HF tooling, and local runtime readiness.
2MaramaRoute doctor --hardware
3
4# One-shot production bootstrap: local config, aliases, agent bridge files, and optional HPE bundle.
5MaramaRoute setup qwen25-05b --all-targets --hpe
6MaramaRoute setup qwen25-7b --target claude-code,codex,continue,opencode,litellm,tabby --hpe --backend vllm
7
8# Workspace bridge config and optional gateway health probe.
9MaramaRoute agent doctor --target claude-code --model qwen25-7b
10MaramaRoute agent doctor --target codex --model qwen25-7b
11MaramaRoute agent doctor --target continue --model qwen25-7b
12MaramaRoute agent doctor --target litellm --model qwen25-7b
13MaramaRoute agent doctor --target hpe --model qwen25-7b --base-url http://127.0.0.1:8787/v1
14
15# Exact remote size planning, local hash verification, and registry drift check.
16MaramaRoute pull qwen25-05b --estimate --remote-sizes
17MaramaRoute verify --deep --write-hashes
18MaramaRoute update-registry --dry-run --diff
19
20# HPE/HPC scaffold: Slurm, live gateway config, backend launch, and run notes.
21MaramaRoute hpe plan qwen25-7b --backend vllm
22MaramaRoute hpe init qwen25-7b --backend vllm --gpus 1
23MaramaRoute hpe init qwen25-7b --backend nim --backend-base-url http://127.0.0.1:8000/v1
24MaramaRoute hpe init qwen25-7b --backend nemo --backend-command ./start-nemo-backend.shmodel_idrepo_idruntimemodalitiescontext_tokensresidencylicense_idsovereignty_tierprimary_artifact1MaramaRoute models
2MaramaRoute catalog --task code --limit 10
3MaramaRoute catalog --task reasoning --requires-tools --jurisdiction NZ
4MaramaRoute catalog --search qwen --family qwen --limit 20
5MaramaRoute analytics
6MaramaRoute categories
7MaramaRoute recommend --task code --sensitivity restricted --prompt-text "Refactor a private Python service"
8MaramaRoute hardware --recommend
9MaramaRoute doctor --hardware
10MaramaRoute ls
11MaramaRoute disk
12MaramaRoute verify
13MaramaRoute verify --deep --write-hashes
14MaramaRoute alias set code qwen25-7b
15MaramaRoute favorite qwen25-05b
16MaramaRoute bench qwen25-05b --dry-run
17MaramaRoute eval| Model id | Hugging Face repo | Runtime | Tier | Primary artifact |
|---|---|---|---|---|
lumynax-chat-hermes-3-llama31-8b-gguf | AbteeXAILab/lumynax-chat-hermes-3-llama31-8b-gguf | llama_cpp | 3 | Hermes-3-Llama-3.1-8B-Q4_K_M.gguf |
lumynax-chat-yi-15-34b-gguf | AbteeXAILab/lumynax-chat-yi-15-34b-gguf | llama_cpp | 3 | Yi-1.5-34B-Chat-Q4_K_M.gguf |
lumynax-coder-codellama-70b-instruct-gguf | AbteeXAILab/lumynax-coder-codellama-70b-instruct-gguf | llama_cpp | 3 | codellama-70b-instruct.Q4_K_M.gguf |
lumynax-coder-codeqwen15-7b-chat-gguf | AbteeXAILab/lumynax-coder-codeqwen15-7b-chat-gguf | llama_cpp | 3 | codeqwen-1_5-7b-chat-q4_k_m.gguf |
lumynax-coder-deepseek-coder-33b-gguf | AbteeXAILab/lumynax-coder-deepseek-coder-33b-gguf | llama_cpp | 3 | deepseek-coder-33b-instruct.Q4_K_M.gguf |
lumynax-coder-deepseek-v2-lite-16b-gguf | AbteeXAILab/lumynax-coder-deepseek-v2-lite-16b-gguf | llama_cpp | 3 | DeepSeek-Coder-V2-Lite-Instruct-Q4_K_M.gguf |
lumynax-coder-qwen25-05b-instruct-gguf | AbteeXAILab/lumynax-coder-qwen25-05b-instruct-gguf | llama_cpp | 3 | qwen2.5-coder-0.5b-instruct-q4_k_m.gguf |
lumynax-coder-qwen25-14b-instruct-gguf | AbteeXAILab/lumynax-coder-qwen25-14b-instruct-gguf | llama_cpp | 3 | qwen2.5-coder-14b-instruct-q4_k_m.gguf |
lumynax-coder-qwen25-15b-instruct-gguf | AbteeXAILab/lumynax-coder-qwen25-15b-instruct-gguf | llama_cpp | 3 | qwen2.5-coder-1.5b-instruct-q4_k_m.gguf |
lumynax-coder-qwen25-7b-instruct-gguf | AbteeXAILab/lumynax-coder-qwen25-7b-instruct-gguf | llama_cpp | 3 | qwen2.5-coder-7b-instruct-q4_k_m.gguf |
lumynax-coder-qwen25-coder-32b-gguf | AbteeXAILab/lumynax-coder-qwen25-coder-32b-gguf | llama_cpp | 3 | Qwen2.5-Coder-32B-Instruct-Q4_K_M.gguf |
lumynax-coder-starcoder2-15b-gguf | AbteeXAILab/lumynax-coder-starcoder2-15b-gguf | llama_cpp | 3 | starcoder2-15b-instruct-v0.1-Q4_K_M.gguf |
lumynax-coder-yi-coder-9b-gguf | AbteeXAILab/lumynax-coder-yi-coder-9b-gguf | llama_cpp | 3 | Yi-Coder-9B-Chat-Q4_K_M.gguf |
lumynax-doc-donut-base | AbteeXAILab/lumynax-doc-donut-base | transformers | 3 | pytorch_model.bin |
lumynax-doc-layoutlmv3-base | AbteeXAILab/lumynax-doc-layoutlmv3-base | transformers | 3 | pytorch_model.bin |
lumynax-doc-nougat-base | AbteeXAILab/lumynax-doc-nougat-base | transformers | 3 | pytorch_model.bin |
lumynax-doc-table-transformer-detection | AbteeXAILab/lumynax-doc-table-transformer-detection | transformers | 3 | pytorch_model.bin |
lumynax-embed-bge-m3 | AbteeXAILab/lumynax-embed-bge-m3 | python_embedding | 2 | merged_model/pytorch_model.bin |
lumynax-embed-e5-mistral-7b | AbteeXAILab/lumynax-embed-e5-mistral-7b | python_embedding | 2 | merged_model/model-00001-of-00002.safetensors |
lumynax-embed-granite-278m-multilingual | AbteeXAILab/lumynax-embed-granite-278m-multilingual | python_embedding | 3 | pytorch_model.bin |
lumynax-embed-nomic-v2-moe | AbteeXAILab/lumynax-embed-nomic-v2-moe | python_embedding | 3 | model.safetensors |
lumynax-frontier-coder-deepseek-v25-1210-gguf | AbteeXAILab/lumynax-frontier-coder-deepseek-v25-1210-gguf | llama_cpp | 2 | DeepSeek-V2.5-1210-Q4_K_M/DeepSeek-V2.5-1210-Q4_K_M-00002-of-00004.gguf |
lumynax-frontier-coder-qwen3-480b-a35b-gguf | AbteeXAILab/lumynax-frontier-coder-qwen3-480b-a35b-gguf | llama_cpp | 2 | Q4_K_M/Qwen3-Coder-480B-A35B-Instruct-Q4_K_M-00001-of-00006.gguf |
lumynax-frontier-dbrx-instruct-132b-gguf | AbteeXAILab/lumynax-frontier-dbrx-instruct-132b-gguf | llama_cpp | 3 | dbrx-instruct.Q2_K.gguf |
lumynax-frontier-minimax-m2-230b | AbteeXAILab/lumynax-frontier-minimax-m2-230b | transformers | 2 | Q4_K_M/MiniMax-M2-Q4_K_M-00002-of-00003.gguf |
lumynax-frontier-minimax-m25-unsloth | AbteeXAILab/lumynax-frontier-minimax-m25-unsloth | llama_cpp | 3 | MiniMax-M2.5-UD-TQ1_0.gguf |
lumynax-frontier-mixtral-8x22b-instruct-gguf | AbteeXAILab/lumynax-frontier-mixtral-8x22b-instruct-gguf | llama_cpp | 3 | Mixtral-8x22B-Instruct-v0.1.Q4_K_M-00001-of-00002.gguf |
lumynax-frontier-olmo2-32b-instruct | AbteeXAILab/lumynax-frontier-olmo2-32b-instruct | transformers | 2 | model-00001-of-00014.safetensors |
lumynax-frontier-phi-35-moe-instruct-gguf | AbteeXAILab/lumynax-frontier-phi-35-moe-instruct-gguf | llama_cpp | 3 | Phi-3.5-MoE-instruct-Q4_K_M.gguf |
lumynax-frontier-phi-4-14b-gguf | AbteeXAILab/lumynax-frontier-phi-4-14b-gguf | llama_cpp | 3 | phi-4-Q4_K_M.gguf |
lumynax-frontier-qwen25-72b-instruct-gguf | AbteeXAILab/lumynax-frontier-qwen25-72b-instruct-gguf | llama_cpp | 3 | Qwen2.5-72B-Instruct-Q4_K_M.gguf |
lumynax-frontier-qwen3-235b-a22b-instruct | AbteeXAILab/lumynax-frontier-qwen3-235b-a22b-instruct | transformers | 2 | Q4_K_M/Qwen3-235B-A22B-Instruct-2507-Q4_K_M-00001-of-00003.gguf |
lumynax-guard-text-moderation | AbteeXAILab/lumynax-guard-text-moderation | transformers | 3 | pytorch_model.bin |
lumynax-infused-gemma-e4b | AbteeXAILab/lumynax-infused-gemma-e4b | transformers_multimodal | 2 | merged_model/model.safetensors |
lumynax-infused-gemma-e4b-text-gguf | AbteeXAILab/lumynax-infused-gemma-e4b-text-gguf | llama_cpp | 3 | lumynax-infused-gemma-e4b-text-gguf-q4_k_m.gguf |
lumynax-infused-gemma4-26b-a4b-gguf | AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf | llama_cpp | 3 | lumynax-infused-gemma4-26b-a4b-ud-q4_k_m.gguf |
lumynax-infused-granite31-1b-a400m-gguf | AbteeXAILab/lumynax-infused-granite31-1b-a400m-gguf | llama_cpp | 3 | granite-3.1-1b-a400m-instruct-Q4_K_M.gguf |
lumynax-infused-granite33-2b-gguf | AbteeXAILab/lumynax-infused-granite33-2b-gguf | llama_cpp | 3 | granite-3.3-2b-instruct-Q4_K_M.gguf |
lumynax-infused-granite33-8b-gguf | AbteeXAILab/lumynax-infused-granite33-8b-gguf | llama_cpp | 3 | granite-3.3-8b-instruct-Q4_K_M.gguf |
lumynax-infused-mistral-7b-v03-gguf | AbteeXAILab/lumynax-infused-mistral-7b-v03-gguf | llama_cpp | 3 | Mistral-7B-Instruct-v0.3-Q4_K_M.gguf |
lumynax-infused-mistral-small-text-gguf | AbteeXAILab/lumynax-infused-mistral-small-text-gguf | llama_cpp | 3 | lumynax-infused-mistral-small-text-gguf-f16.gguf |
lumynax-infused-olmo2-1b-0425-gguf | AbteeXAILab/lumynax-infused-olmo2-1b-0425-gguf | llama_cpp | 3 | OLMo-2-0425-1B-Instruct-Q4_K_M.gguf |
lumynax-infused-olmo2-7b-1124-gguf | AbteeXAILab/lumynax-infused-olmo2-7b-1124-gguf | llama_cpp | 3 | olmo-2-1124-7B-instruct-Q4_K_M.gguf |
lumynax-infused-phi-4-text-gguf | AbteeXAILab/lumynax-infused-phi-4-text-gguf | llama_cpp | 3 | lumynax-infused-phi-4-text-gguf-f16.gguf |
lumynax-infused-phi3-mini-4k-gguf | AbteeXAILab/lumynax-infused-phi3-mini-4k-gguf | llama_cpp | 3 | Phi-3-mini-4k-instruct-q4.gguf |
lumynax-infused-phi4-mini-instruct-gguf | AbteeXAILab/lumynax-infused-phi4-mini-instruct-gguf | llama_cpp | 3 | Phi-4-mini-instruct-Q4_K_M.gguf |
lumynax-infused-qwen2-audio-7b | AbteeXAILab/lumynax-infused-qwen2-audio-7b | transformers | 2 | merged_model/model-00003-of-00005.safetensors |
lumynax-infused-qwen25-15b-instruct-gguf | AbteeXAILab/lumynax-infused-qwen25-15b-instruct-gguf | llama_cpp | 3 | qwen2.5-1.5b-instruct-q4_k_m.gguf |
lumynax-infused-qwen25-3b-instruct-gguf | AbteeXAILab/lumynax-infused-qwen25-3b-instruct-gguf | llama_cpp | 3 | qwen2.5-3b-instruct-q4_k_m.gguf |
lumynax-infused-qwen25-7b-instruct-gguf | AbteeXAILab/lumynax-infused-qwen25-7b-instruct-gguf | llama_cpp | 3 | qwen2.5-7b-instruct-q3_k_m.gguf |
lumynax-infused-qwen25-omni-7b-voice | AbteeXAILab/lumynax-infused-qwen25-omni-7b-voice | transformers | 2 | merged_model/model-00003-of-00005.safetensors |
lumynax-infused-qwen3-06b-gguf | AbteeXAILab/lumynax-infused-qwen3-06b-gguf | llama_cpp | 3 | Qwen3-0.6B-Q8_0.gguf |
lumynax-infused-qwen3-14b-gguf | AbteeXAILab/lumynax-infused-qwen3-14b-gguf | llama_cpp | 3 | Qwen3-14B-Q4_K_M.gguf |
lumynax-infused-qwen3-17b-gguf | AbteeXAILab/lumynax-infused-qwen3-17b-gguf | llama_cpp | 3 | Qwen3-1.7B-Q8_0.gguf |
lumynax-infused-qwen3-30b-a3b-gguf | AbteeXAILab/lumynax-infused-qwen3-30b-a3b-gguf | llama_cpp | 3 | lumynax-infused-qwen3-30b-a3b-q4_k_m.gguf |
lumynax-infused-qwen3-8b-gguf | AbteeXAILab/lumynax-infused-qwen3-8b-gguf | llama_cpp | 3 | lumynax-infused-qwen3-8b-q4_k_m.gguf |
lumynax-infused-qwen3-coder-30b-a3b-gguf | AbteeXAILab/lumynax-infused-qwen3-coder-30b-a3b-gguf | llama_cpp | 3 | lumynax-infused-qwen3-coder-30b-a3b-q4_k_m.gguf |
lumynax-infused-qwen3-text-gguf | AbteeXAILab/lumynax-infused-qwen3-text-gguf | llama_cpp | 3 | lumynax-infused-qwen3-text-gguf-f16.gguf |
lumynax-infused-smollm-135m-gguf | AbteeXAILab/lumynax-infused-smollm-135m-gguf | llama_cpp | 3 | SmolLM-135M-Instruct.Q4_K_M.gguf |
lumynax-infused-smollm2-17b-gguf | AbteeXAILab/lumynax-infused-smollm2-17b-gguf | llama_cpp | 3 | smollm2-1.7b-instruct-q4_k_m.gguf |
lumynax-infused-smollm2-360m-gguf | AbteeXAILab/lumynax-infused-smollm2-360m-gguf | llama_cpp | 3 | smollm2-360m-instruct-q8_0.gguf |
lumynax-infused-smollm3-3b-gguf | AbteeXAILab/lumynax-infused-smollm3-3b-gguf | llama_cpp | 3 | SmolLM3-Q4_K_M.gguf |
lumynax-infused-zephyr-7b-beta-gguf | AbteeXAILab/lumynax-infused-zephyr-7b-beta-gguf | llama_cpp | 3 | zephyr-7b-beta.Q4_K_M.gguf |
lumynax-longctx-glm4-9b-chat-1m-gguf | AbteeXAILab/lumynax-longctx-glm4-9b-chat-1m-gguf | llama_cpp | 3 | glm-4-9b-chat-1m-Q4_K_M.gguf |
lumynax-longctx-prolong-512k-instruct | AbteeXAILab/lumynax-longctx-prolong-512k-instruct | transformers | 3 | model-00004-of-00007.safetensors |
lumynax-longctx-qwen25-7b-1m-gguf | AbteeXAILab/lumynax-longctx-qwen25-7b-1m-gguf | llama_cpp | 3 | Qwen2.5-7B-Instruct-1M-Q4_K_M.gguf |
lumynax-longctx-yi-9b-200k | AbteeXAILab/lumynax-longctx-yi-9b-200k | transformers | 3 | model-00002-of-00004.safetensors |
lumynax-math-qwen25-math-7b-gguf | AbteeXAILab/lumynax-math-qwen25-math-7b-gguf | llama_cpp | 3 | Qwen2.5-Math-7B-Instruct-Q4_K_M.gguf |
lumynax-moe-moonlight-16b-a3b-gguf | AbteeXAILab/lumynax-moe-moonlight-16b-a3b-gguf | llama_cpp | 3 | lumynax-moe-moonlight-16b-a3b-iq4_xs.gguf |
lumynax-moe-olmoe-1b-7b-0924-instruct-gguf | AbteeXAILab/lumynax-moe-olmoe-1b-7b-0924-instruct-gguf | llama_cpp | 3 | OLMoE-1B-7B-0924-Instruct-Q4_K_M.gguf |
lumynax-moe-olmoe-1b-7b-gguf | AbteeXAILab/lumynax-moe-olmoe-1b-7b-gguf | llama_cpp | 3 | olmoe-1b-7b-0924-instruct-q4_k_m.gguf |
lumynax-multimodal-aria-25b-moe | AbteeXAILab/lumynax-multimodal-aria-25b-moe | transformers_multimodal | 2 | model-00001-of-00012.safetensors |
lumynax-multimodal-glm46v-flash | AbteeXAILab/lumynax-multimodal-glm46v-flash | llama_cpp_multimodal | 2 | lumynax-multimodal-glm46v-flash-ud-iq2_m.gguf |
lumynax-multimodal-internvl3-78b-instruct | AbteeXAILab/lumynax-multimodal-internvl3-78b-instruct | transformers_multimodal | 2 | model-00001-of-00033.safetensors |
lumynax-multimodal-kimi-vl-a3b-thinking | AbteeXAILab/lumynax-multimodal-kimi-vl-a3b-thinking | llama_cpp_multimodal | 2 | lumynax-multimodal-kimi-vl-a3b-thinking-q4_k_m.gguf |
lumynax-multimodal-llava-next-34b | AbteeXAILab/lumynax-multimodal-llava-next-34b | transformers_multimodal | 2 | model-00006-of-00015.safetensors |
lumynax-multimodal-pixtral-large-124b | AbteeXAILab/lumynax-multimodal-pixtral-large-124b | transformers_multimodal | 2 | consolidated-00004-of-00052.safetensors |
lumynax-multimodal-qwen25-vl-72b-instruct-gguf | AbteeXAILab/lumynax-multimodal-qwen25-vl-72b-instruct-gguf | llama_cpp_multimodal | 3 | Qwen2.5-VL-72B-Instruct-Q4_K_M.gguf |
lumynax-nz-3b | AbteeXAILab/lumynax-nz-3b | transformers | 2 | merged_model/model-00001-of-00055.safetensors |
lumynax-nz-qwen25-coder-3b-gguf | AbteeXAILab/lumynax-nz-qwen25-coder-3b-gguf | llama_cpp | 3 | lumynax-nz-qwen25-coder-3b-q4_k_m.gguf |
lumynax-ocr-trocr-large-handwritten | AbteeXAILab/lumynax-ocr-trocr-large-handwritten | transformers | 3 | pytorch_model.bin |
lumynax-ocr-trocr-large-printed | AbteeXAILab/lumynax-ocr-trocr-large-printed | transformers | 3 | pytorch_model.bin |
lumynax-reasoning-deepseek-distill-text-gguf | AbteeXAILab/lumynax-reasoning-deepseek-distill-text-gguf | llama_cpp | 3 | lumynax-reasoning-deepseek-distill-text-gguf-f16.gguf |
lumynax-reasoning-deepseek-prover-v2-671b-gguf | AbteeXAILab/lumynax-reasoning-deepseek-prover-v2-671b-gguf | llama_cpp | 2 | Q4_K_M/DeepSeek-Prover-V2-671B-Q4_K_M-00003-of-00009.gguf |
lumynax-reasoning-deepseek-r1-distill-llama-70b-gguf | AbteeXAILab/lumynax-reasoning-deepseek-r1-distill-llama-70b-gguf | llama_cpp | 3 | DeepSeek-R1-Distill-Llama-70B-Q4_K_M.gguf |
lumynax-reasoning-deepseek-r1-qwen-15b-gguf | AbteeXAILab/lumynax-reasoning-deepseek-r1-qwen-15b-gguf | llama_cpp | 3 | DeepSeek-R1-Distill-Qwen-1.5B-Q4_K_M.gguf |
lumynax-reasoning-deepseek-r1-qwen-7b-gguf | AbteeXAILab/lumynax-reasoning-deepseek-r1-qwen-7b-gguf | llama_cpp | 3 | DeepSeek-R1-Distill-Qwen-7B-Q4_K_M.gguf |
lumynax-reasoning-glm46-355b-moe | AbteeXAILab/lumynax-reasoning-glm46-355b-moe | transformers | 2 | Q4_K_M/GLM-4.6-Q4_K_M-00001-of-00005.gguf |
lumynax-reasoning-gpt-oss-20b-gguf | AbteeXAILab/lumynax-reasoning-gpt-oss-20b-gguf | llama_cpp | 3 | lumynax-reasoning-gpt-oss-20b-mxfp4.gguf |
lumynax-reasoning-internlm3-8b-gguf | AbteeXAILab/lumynax-reasoning-internlm3-8b-gguf | llama_cpp | 3 | internlm3-8b-instruct-Q4_K_M.gguf |
lumynax-reasoning-phi4-mini-gguf | AbteeXAILab/lumynax-reasoning-phi4-mini-gguf | llama_cpp | 3 | Phi-4-mini-reasoning-Q4_K_M.gguf |
lumynax-reasoning-qwq-32b-gguf | AbteeXAILab/lumynax-reasoning-qwq-32b-gguf | llama_cpp | 3 | qwq-32b-q4_k_m.gguf |
lumynax-reranker-bge-v2-m3 | AbteeXAILab/lumynax-reranker-bge-v2-m3 | transformers | 3 | model.safetensors |
lumynax-speech-kokoro-82m-tts | AbteeXAILab/lumynax-speech-kokoro-82m-tts | transformers | 3 | kokoro-v1_0.pth |
lumynax-speech-whisper-large-v3-turbo | AbteeXAILab/lumynax-speech-whisper-large-v3-turbo | transformers | 3 | model.safetensors |
lumynax-tiny | AbteeXAILab/lumynax-tiny | transformers | 2 | merged_model/model.safetensors |
lumynax-tiny-qwen25-05b-gguf | AbteeXAILab/lumynax-tiny-qwen25-05b-gguf | llama_cpp | 3 | lumynax-tiny-qwen25-05b-q4_k_m.gguf |
lumynax-translate-nllb-200-3b | AbteeXAILab/lumynax-translate-nllb-200-3b | transformers | 3 | pytorch_model-00002-of-00003.bin |
| Gate | Rejects when |
|---|---|
| Modality match | Requested modalities are not a subset of model modalities |
| Context length | Model context_tokens is below min_context_tokens |
| Tool support | requires_tools=true but the model lacks tool support |
| JSON support | requires_json=true but the model lacks JSON support |
| License allowlist | License ID is not in the caller allowlist |
| Jurisdictional residency | requires_local=true and jurisdiction is not in model residency |
| Sovereignty tier | Data sensitivity requires a higher sovereignty tier |
iwi / data sovereignty keywords (+3 x tier)1MaramaRoute serve --port 8787 --open
2
3# Serve routed requests from pulled local GGUF models.
4MaramaRoute serve --port 8787 --live-local --cache-dir ./modelsGET /healthGET /v1/modelsGET /v1/local/cacheGET /v1/local/healthPOST /v1/routePOST /v1/chat/completionsMaramaRoute route --request examples/request.code-restricted.json1MaramaRoute catalog --search starcoder --limit 5
2MaramaRoute compare --model lumynax-coder-starcoder2-15b-gguf --model lumynax-coder-qwen25-coder-32b-ggufMaramaRoute matrix1# One command writes MaramaRoute config, aliases, agent bridge files, and HPE scaffold.
2MaramaRoute setup qwen25-7b --all-targets --hpe --backend vllm
3
4# Command bridge JSON for coding-agent workspaces.
5MaramaRoute agent-config --target claude-code --model qwen25-7b
6MaramaRoute agent-config --target codex --model qwen25-7b
7MaramaRoute agent-config --target continue --model qwen25-7b
8MaramaRoute agent-config --target opencode --model qwen25-7b
9MaramaRoute agent-config --target litellm --model qwen25-7b
10MaramaRoute agent-config --target tabby --model qwen25-7b
11MaramaRoute agent-init --target claude-code --model qwen25-7b
12MaramaRoute agent-init --target codex --model qwen25-7b
13MaramaRoute agent init --target claude-code --model qwen25-7b
14MaramaRoute agent doctor --target claude-code --model qwen25-7b
15
16# HPE/HPC Slurm job script, live gateway config, backend launch, and run notes.
17MaramaRoute hpe plan qwen25-7b --backend vllm
18MaramaRoute hpe-job qwen25-05b --mode serve > marama-route.slurm
19MaramaRoute hpe-job qwen25-7b --backend vllm --gpus 1 > marama-route.slurm
20MaramaRoute hpe init qwen25-7b --backend vllm --gpus 1
21MaramaRoute hpe init qwen25-7b --backend nim --backend-base-url http://127.0.0.1:8000/v1
22MaramaRoute hpe init qwen25-7b --backend nemo --backend-command ./start-nemo-backend.sh
23MaramaRoute hpe tunnel
24
25# Generic local command bridge config.
26MaramaRoute agent-config --target generic --base-url http://127.0.0.1:8787/v11MaramaRoute audit record --request examples/request.code-restricted.json
2MaramaRoute audit list
3MaramaRoute audit export --output marama-route-audit.json
4MaramaRoute update-registry --dry-run
5MaramaRoute update-registry --dry-run --diff~/.opencode/providers/)MaramaRoute opencode-config > ~/.opencode/providers/lumynax.json1from marama_route import (
2 SovereignModelRouter,
3 RoutingRequest,
4 load_model_registry,
5)
6from pathlib import Path
7
8models = load_model_registry(Path("./my_registry.json"))
9router = SovereignModelRouter(models)
10
11decision = router.route(
12 RoutingRequest(
13 prompt="Translate this paragraph to te reo Maori",
14 task_type="general",
15 jurisdiction="NZ",
16 data_sensitivity="personal", # routes only to sovereignty_tier >= 2
17 requires_local=True,
18 )
19)
20
21print(decision.selected_model.model_id) # e.g. lumynax-translate-nllb-200-3b
22print(decision.reasons) # rationale
23print(decision.scores) # full scorecardabteex-sovereigncode - Policy API and audit ledger for coding agents. Pairs with MaramaRoute when you need per-request policy enforcement and tamper-evident logs.