whatisgithub

What is qwen3.6-35b-a3b-ud-q8_k_xl_dgx-spark-recipe?

miaai-lab/qwen3.6-35b-a3b-ud-q8_k_xl_dgx-spark-recipe — explained in plain English

Analysis updated 2026-05-18

24ShellAudience · ops devopsComplexity · 5/5Setup · hard

In one sentence

Shell scripts that start, stop, and auto download a large open weight AI language model to run locally on high memory GPU hardware.

Mindmap

mindmap
  root((Qwen recipe scripts))
    What it does
      Start and stop llama-server
      Auto download model weights
      Health check before ready
    Tech stack
      Bash
      llama.cpp
      GGUF model format
      CUDA
    Use cases
      Self host a large language model
      Run on DGX Spark hardware
      Expose OpenAI compatible API locally
    Audience
      ML engineers
      DevOps engineers

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

What do people build with it?

USE CASE 1

Run the Qwen3.6-35B-A3B language model locally on a high memory GPU machine like DGX Spark.

USE CASE 2

Automatically download missing model weight files from Hugging Face before starting the server.

USE CASE 3

Expose a locally hosted model through an OpenAI compatible chat API for other tools to use.

USE CASE 4

Cleanly start and stop a background llama-server process without manually managing PIDs.

What is it built with?

Bashllama.cppCUDAGGUFHugging Face

How does it compare?

miaai-lab/qwen3.6-35b-a3b-ud-q8_k_xl_dgx-spark-recipealexwortega/claude-ml-intern-skillclefspear/starcommand
Stars242424
LanguageShellShellShell
Setup difficultyhardmoderateeasy
Complexity5/54/52/5
Audienceops devopsresearcherdeveloper

Figures from each repo's GitHub metadata at analysis time.

How do you get it running?

Difficulty · hard Time to first run · 1h+

Requires 96-128GB of GPU VRAM, a CUDA build of llama.cpp compiled from source, and about 40GB of disk space for model downloads.

So what is it?

This repository is a small set of shell scripts that make it easier to run a specific large AI language model on your own hardware, rather than through a cloud API. The model is Qwen3.6-35B-A3B, a large open weight model released in a compressed file format called GGUF, and the scripts start and stop a program called llama-server, which is the piece of software that actually loads the model and serves it. The scripts are built around powerful workstation style machines with 96 to 128 gigabytes of graphics card memory, such as NVIDIA's DGX Spark, since a model this size needs a large amount of memory just to load, plus more for its very long 256,000 token context window and its vision capabilities. The start script automatically figures out where the llama-server program is installed, checks whether the roughly 40 gigabyte model file and its smaller companion vision file are already present, and downloads whichever ones are missing directly from Hugging Face, resuming automatically if a download is interrupted. It also checks that the server has actually become healthy before reporting it is ready, avoids starting a second copy if one is already running, and keeps running in the background even if you close the terminal window. A matching stop script shuts the server down cleanly. Important to note: this project does not include the llama-server program itself, or the AI model weights. Both need to be obtained separately, with llama.cpp built from source with CUDA support for your specific graphics card, and the model files downloaded either automatically by the start script or manually ahead of time. A Hugging Face account token is recommended to avoid download rate limits. Once running, the server exposes an API compatible with OpenAI's chat format, so it can be used as a drop in replacement for tools that expect an OpenAI style endpoint, letting you send chat messages and get responses from your own locally running model.

Copy-paste prompts

Prompt 1
Walk me through building llama.cpp with CUDA support so I can use this start script.
Prompt 2
Help me set up a Hugging Face token so start.sh can download the model without rate limits.
Prompt 3
Explain what environment variables I can set to point start.sh at a different GGUF model.
Prompt 4
Help me test the running llama-server using its OpenAI compatible chat completions endpoint.

Frequently asked questions

What is qwen3.6-35b-a3b-ud-q8_k_xl_dgx-spark-recipe?

Shell scripts that start, stop, and auto download a large open weight AI language model to run locally on high memory GPU hardware.

What language is qwen3.6-35b-a3b-ud-q8_k_xl_dgx-spark-recipe written in?

Mainly Shell. The stack also includes Bash, llama.cpp, CUDA.

How hard is qwen3.6-35b-a3b-ud-q8_k_xl_dgx-spark-recipe to set up?

Setup difficulty is rated hard, with roughly 1h+ to a first successful run.

Who is qwen3.6-35b-a3b-ud-q8_k_xl_dgx-spark-recipe for?

Mainly ops devops.

Open on GitHub → Ask about another repo

This repo across BitVibe Labs

Verify against the repo before relying on details.