Skip to main content
There are two places to get models, matching GenieX’s two runtimes:

Run a Qualcomm AI Hub Model

For a model in the ai-hub-models/* namespace, just geniex infer it:
windows
Qualcomm AI Engine Direct is NPU-only. Pass --compute npu or omit the flag.

Run a GGUF model from Hugging Face

Any compatible GGUF repo on Hugging Face works. Copy the repo path and pass it to geniex infer:
windows
For example:
windows
When prompted:
  • Model typevlm for vision-language models (Qwen3-VL family), llm otherwise.
  • Precision (Quantization)Q4_0 for best Hexagon NPU support. See Precisions (Quantizations) Supported.

Set up a Hugging Face token

Some models on Hugging Face are gated — you must accept the model’s license on the Hugging Face website and provide an access token before GenieX can download them.
1

Create a token

Go to huggingface.co/settings/tokens and create a new token with Read access.
2

Accept the model license

Visit the model’s page on Hugging Face (e.g. https://huggingface.co/<org>/<model>) and accept the license/agreement if prompted.
3

Provide the token to GenieX

GenieX checks the following sources in order (first non-empty value wins):
  1. GENIEX_HFTOKEN environment variable
  2. HF_TOKEN environment variable
  3. ~/.cache/huggingface/token file
Option A — environment variable (recommended):
Option B — Hugging Face CLI login (persists to disk):
This writes the token to ~/.cache/huggingface/token, which GenieX reads automatically.
GENIEX_HFTOKEN takes highest priority, then HF_TOKEN, then the cached token file. Use GENIEX_HFTOKEN if you need a separate token for GenieX without affecting other Hugging Face tools.

Run a local Qualcomm AI Engine Direct bundle

Bundles outside the ai-hub-models/* namespace — whether self-converted from Hugging Face or already sitting on disk — are imported once, then run like any other model.
Register the bundle with geniex pull --local-path, then geniex infer it.Self-converted from Hugging FaceMake sure the Hugging Face CLI is installed, then download a bundle and pull it:
Already on diskPoint --local-path at the extracted bundle directory (containing .bin shards and metadata.json):
You can also pull directly from an AI Hub .zip archive without extracting first:
geniex pull copies model files into its local cache. After a successful pull, you can safely delete the original download to reclaim disk space. Use geniex list to confirm the model is cached.

Run a local GGUF model

A local GGUF model is a directory (or file) holding your .gguf weights — side-loaded, produced by another tool, or already on disk. Import it once, then run it like any other model.
Point --local-path at the directory containing your .gguf file:

Precisions (Quantizations) Supported

Which precision you pick determines where the model runs.

llama.cpp

llama.cpp accepts the full range of GGML quantization formats. The CLI prompts you to pick one when you geniex pull a GGUF model:
Stick with Q4_0 if you want the model to land on the Hexagon NPU. Other precisions will work but typically run on GPU or CPU.

Qualcomm AI Engine Direct

Qualcomm AI Engine Direct bundles are statically pre-quantized — there is no precision choice at runtime. To use a different precision, get a different bundle from Qualcomm AI Hub.
Most pre-built bundles on Qualcomm AI Hub use w4a16. The quantization level is baked into the bundle at compile time — pick the bundle that matches your quality/performance target.
For other bundle constraints (context length, KV cache, Android nCtx), see Qualcomm AI Engine Direct runtime constraints.