Instructions to use agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF # Run inference directly in the terminal: llama cli -hf agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF # Run inference directly in the terminal: llama cli -hf agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF # Run inference directly in the terminal: ./llama-cli -hf agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF # Run inference directly in the terminal: ./build/bin/llama-cli -hf agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF
Use Docker
docker model run hf.co/agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF
- LM Studio
- Jan
- vLLM
How to use agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF
- Ollama
How to use agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF with Ollama:
ollama run hf.co/agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF
- Unsloth Desktop
- Pi
How to use agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF with Docker Model Runner:
docker model run hf.co/agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF
- Lemonade
How to use agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF
Run and chat with the model
lemonade run user.Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "agentionai/Qwen3.8-Flash-Next-ROCmFP4-FAST-GGUF" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
New Higher quality Quant.
Hey, i just wanted to ask when will the Higher Quality Quant with the 15-20tps decode would be available with also a decent Vision encoder. If possible i'd like for you to also explore the n-gram ssd streaming with a MTP like predictor loaded for the ngram predictive loading onto the ram. Ik i am asking too much but the SSD ngram part is already supported i tested it, results in 12tps decode and that's bad, so was thinking an experienced developer can pull-off this n-gram predictor on the NPU that would make this model and similar "separate n-gram" architecture models a killer in performance and speed on STRIX devices.
SSD loading should be coming. I am also working on higher quality quants. My goal with the FP4 imatrix quant was to make something that easily fits in to memory on a strix halo and is still high quality. It beats some other quants as is explained in the readme.
The FP4 imtrax quant is very good. Vision tower is coming today hopefully. I created mainline compliant quants as well. Q4 and Q5. Enjoy!
Thanks, btw did you check with my proposal, tbh it's a Hypothesis to be tested.. ssd streaming but with a MTP like predictor for prefetching the next n-gram token.
The NGRAM lookup is really cheap and and a predictor won't do anything there. The cost is in the inference pipeline.