Instructions to use jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4") model = AutoModelForMultimodalLM.from_pretrained("jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4
- SGLang
How to use jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4 with Docker Model Runner:
docker model run hf.co/jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4
OrcaRouter Qwen3.8 Flash-Next — ModelOpt NVFP4
Published by request from the Pennyroyal community. This is a ModelOpt NVFP4 conversion of OrcaRouter’s uncensored Qwen3.8 Flash-Next checkpoint—the conversion I use for local agentic work with Pennyroyal/SGLang.
I’ve also heard reports from several community members of it outperforming the stock model on agentic tasks, which added to the interest in sharing this working format.
The original model modification is OrcaRouter’s work. My contribution here is the quantization, compatible packaging and runtime testing—not additional fine-tuning or uncensoring.
Model lineage
- Modified source: OrcaRouter/Qwen3.8-Flash-Next-Uncensored
- Base checkpoint: Qwen/Qwen3.8-Flash-Next
- Runtime: Pennyroyal/SGLang
Quantization and packaging
The checkpoint uses NVIDIA ModelOpt 0.46.0 NVFP4: 4-bit floating-point weights and activations, group size 16, on selected Linear modules. Attention and Gated-DeltaNet paths, routers, shared experts, hyper-connections, PLE, vision, embeddings, LM head and MTP are excluded from NVFP4 according to the packaged configuration. The large PLE embedding shards are FP8 E4M3. It is stored as sharded safetensors and is approximately 135.3 GB (126 GiB). Pennyroyal's optional online-FP8 optimizations are runtime settings, separate from this on-disk conversion. RAM versus NVMe PLE placement is also a runtime choice; see NVMe PLE setup.
This is the working checkpoint used for my daily agentic workload, including thinking and tool use, and tested with Pennyroyal’s Flash-Next native-MTP/FR-Spec path on an RTX PRO 6000 Blackwell. That is practical runtime evidence, not a claim of new benchmark scores or broad hardware compatibility.
Run with Pennyroyal
For a native installation, download the repository to a local directory and set that directory as TARGET_MODEL; then follow Launch Flash-Next with FR-Spec.
For the container, mount the parent model directory as HOST_MODELS_ROOT and set TARGET_MODEL to its corresponding path below /models, for example /models/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4. See Choose a profile and configure .env.
The supplied source files have conflicting license metadata: the source README labels the model Apache-2.0, while its included LICENSE is Qwen Community License 1.0. This upload preserves that license file and declares the Hub license as other; review the included terms before use.
- Downloads last month
- -
Model tree for jpezzulli/OrcaRouter-Qwen3.8-Flash-Next-Uncensored-ModelOpt-NVFP4
Base model
Qwen/Qwen3.8-Flash-Next