Instructions to use Jackrong/Qwopus3.6-35B-A3B-v1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Jackrong/Qwopus3.6-35B-A3B-v1-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Jackrong/Qwopus3.6-35B-A3B-v1-GGUF") 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 AutoModel model = AutoModel.from_pretrained("Jackrong/Qwopus3.6-35B-A3B-v1-GGUF", dtype="auto") - llama-cpp-python
How to use Jackrong/Qwopus3.6-35B-A3B-v1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Jackrong/Qwopus3.6-35B-A3B-v1-GGUF", filename="Qwopus3.6-35B-A3B-v1-IQ4_XS.gguf", )
llm.create_chat_completion( 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" } } ] } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Jackrong/Qwopus3.6-35B-A3B-v1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M
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 Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M
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 Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Jackrong/Qwopus3.6-35B-A3B-v1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Jackrong/Qwopus3.6-35B-A3B-v1-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": "Jackrong/Qwopus3.6-35B-A3B-v1-GGUF", "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/Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M
- SGLang
How to use Jackrong/Qwopus3.6-35B-A3B-v1-GGUF 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 "Jackrong/Qwopus3.6-35B-A3B-v1-GGUF" \ --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": "Jackrong/Qwopus3.6-35B-A3B-v1-GGUF", "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 "Jackrong/Qwopus3.6-35B-A3B-v1-GGUF" \ --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": "Jackrong/Qwopus3.6-35B-A3B-v1-GGUF", "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" } } ] } ] }' - Ollama
How to use Jackrong/Qwopus3.6-35B-A3B-v1-GGUF with Ollama:
ollama run hf.co/Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M
- Unsloth Studio
How to use Jackrong/Qwopus3.6-35B-A3B-v1-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Jackrong/Qwopus3.6-35B-A3B-v1-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Jackrong/Qwopus3.6-35B-A3B-v1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Jackrong/Qwopus3.6-35B-A3B-v1-GGUF to start chatting
- Pi
How to use Jackrong/Qwopus3.6-35B-A3B-v1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Jackrong/Qwopus3.6-35B-A3B-v1-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M
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 Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use Jackrong/Qwopus3.6-35B-A3B-v1-GGUF with Docker Model Runner:
docker model run hf.co/Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M
- Lemonade
How to use Jackrong/Qwopus3.6-35B-A3B-v1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Jackrong/Qwopus3.6-35B-A3B-v1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwopus3.6-35B-A3B-v1-GGUF-Q4_K_M
List all available models
lemonade list
Surprisingly good coder, I'm Impressed.
I tested more than a hundreds off line local models during the last year, This model which is a mixture of models is the best I tested till now. Its doing a remarkable coding work, better than some of the big online commercial models.
Well done.
Any one else share my experience with it ?
Strangely enough, I can use the Q6_K with an RTX 5080 and 16GB VRAM at 30 t/s, and it stays that way even in long contexts. With the correct agents.md, it performs wonderfully. Congratulations to the creators! Perhaps there are some unnecessary parameters in my settings.
.\llama-server.exe -m C:\models\Qwopus3.6-35B-A3B-v1-Q6_K\Qwopus3.6-35B-A3B-v1-Q6_K.gguf
--n-gpu-layers 999 --n-cpu-moe 25
--no-mmap --flash-attn on
--batch-size 2048 --ubatch-size 1024
--ctx-size 131072 --cache-type-k q4_0
--cache-type-v q4_0 --threads 24
--threads-batch 24 --prio 2
--host 0.0.0.0 --cache-reuse 0
--alias Qwen3.6-35B-A3B --metrics
--port 8080
Thank you both for the amazing feedback!
It's also fantastic to see it running so smoothly with long contexts! llama-server run command—that kind of configuration sharing is incredibly helpful for the rest of the community to get the best performance.
❤️ Thanks again for your support and happy coding!
I tested more than a hundreds off line local models during the last year, This model which is a mixture of models is the best I tested till now. Its doing a remarkable coding work, better than some of the big online commercial models.
Well done.
Any one else share my experience with it ?
Strangely enough, I can use the Q6_K with an RTX 5080 and 16GB VRAM at 30 t/s, and it stays that way even in long contexts. With the correct agents.md, it performs wonderfully. Congratulations to the creators! Perhaps there are some unnecessary parameters in my settings.
.\llama-server.exe
-m C:\models\Qwopus3.6-35B-A3B-v1-Q6_K\Qwopus3.6-35B-A3B-v1-Q6_K.gguf
--n-gpu-layers 999--n-cpu-moe 25
--no-mmap--flash-attn on
--batch-size 2048--ubatch-size 1024
--ctx-size 131072--cache-type-k q4_0
--cache-type-v q4_0--threads 24
--threads-batch 24--prio 2
--host 0.0.0.0--cache-reuse 0
--alias Qwen3.6-35B-A3B--metrics
--port 8080
wtf
could you at least try a bit to de-slopify your very warm messages next time?
I've been testing Qwopus 35B (IQ4_XS) on my RTX 5060 Ti 8GB and 64GB DDR4 (4x16GB @ 2100MHz). The model's logic and output quality are surprisingly strong for this setup, and I'm consistently hitting 30-35 t/s.However, I'm running into some repetition loops. Given the hardware constraints—specifically the 8GB VRAM and the low 2100MHz RAM frequency—are there any llama-server optimizations to fix the looping while maintaining this level of performance? Current command:
cd C:\Users\User\Documents\Informatik\Ki\llama-turbo\build\bin\Release
.\llama-server.exe -m "C:/Users/User/.lmstudio/models/Jackrong/Qwopus3.6-35B-A3B-v1-GGUF/Qwopus3.6-35B-A3B-v1-IQ4_XS.gguf"
-ngl 999 --n-cpu-moe 35
--no-mmap --mlock
--cache-type-k q8_0 --cache-type-v q8_0
-c 65536 --host 0.0.0.0
--port 8080 `
--metrics
Strangely enough, I can use the Q6_K with an RTX 5080 and 16GB VRAM at 30 t/s, and it stays that way even in long contexts. With the correct agents.md, it performs wonderfully. Congratulations to the creators! Perhaps there are some unnecessary parameters in my settings.
.\llama-server.exe
-m C:\models\Qwopus3.6-35B-A3B-v1-Q6_K\Qwopus3.6-35B-A3B-v1-Q6_K.gguf
--n-gpu-layers 999--n-cpu-moe 25
--no-mmap--flash-attn on
--batch-size 2048--ubatch-size 1024
--ctx-size 131072--cache-type-k q4_0
--cache-type-v q4_0--threads 24
--threads-batch 24--prio 2
--host 0.0.0.0--cache-reuse 0
--alias Qwen3.6-35B-A3B--metrics
--port 8080
I've tried this:
llama-server
--port ${PORT}
--model /models/Jackrong/Qwopus3.6-35B-A3B-v1-GGUF/Qwopus3.6-35B-A3B-v1-IQ4_XS.gguf
--mmproj /models/Jackrong/Qwopus3.6-35B-A3B-v1-GGUF/qwopus3.6-35b-a3b-mmproj.gguf
--n-gpu-layers ${n_gpu_layers_max}
--n-cpu-moe 18
--ctx-size ${ctx_size_128k}
-ctk q4_0
-ctv q4_0
--flash-attn on
--host ${host}
and get 79t/s on 4070Ti Super 16G.
That's amazing!
"--n-cpu-moe 18 -ctk q4_0 -ctv q4_0" helps a lot.
I've been testing Qwopus 35B (IQ4_XS) on my RTX 5060 Ti 8GB and 64GB DDR4 (4x16GB @ 2100MHz). The model's logic and output quality are surprisingly strong for this setup, and I'm consistently hitting 30-35 t/s.However, I'm running into some repetition loops. Given the hardware constraints—specifically the 8GB VRAM and the low 2100MHz RAM frequency—are there any llama-server optimizations to fix the looping while maintaining this level of performance? Current command:
cd C:\Users\User\Documents\Informatik\Ki\llama-turbo\build\bin\Release
.\llama-server.exe
-m "C:/Users/User/.lmstudio/models/Jackrong/Qwopus3.6-35B-A3B-v1-GGUF/Qwopus3.6-35B-A3B-v1-IQ4_XS.gguf"
-ngl 999--n-cpu-moe 35
--no-mmap--mlock
--cache-type-k q8_0--cache-type-v q8_0
-c 65536--host 0.0.0.0
--port 8080 `
--metrics
My advice is to strengthen agent.md, create prompts that will prevent hallucinations, loops, and lengthy reasoning, because in my experience, 30-40 t/s isn't bad for development; the real time loss occurs in the areas I mentioned.
I've been testing Qwopus 35B (IQ4_XS) on my RTX 5060 Ti 8GB and 64GB DDR4 (4x16GB @ 2100MHz). The model's logic and output quality are surprisingly strong for this setup, and I'm consistently hitting 30-35 t/s.However, I'm running into some repetition loops. Given the hardware constraints—specifically the 8GB VRAM and the low 2100MHz RAM frequency—are there any llama-server optimizations to fix the looping while maintaining this level of performance? Current command:
cd C:\Users\User\Documents\Informatik\Ki\llama-turbo\build\bin\Release
.\llama-server.exe
-m "C:/Users/User/.lmstudio/models/Jackrong/Qwopus3.6-35B-A3B-v1-GGUF/Qwopus3.6-35B-A3B-v1-IQ4_XS.gguf"
-ngl 999--n-cpu-moe 35
--no-mmap--mlock
--cache-type-k q8_0--cache-type-v q8_0
-c 65536--host 0.0.0.0
--port 8080 `
--metricsMy advice is to strengthen agent.md, create prompts that will prevent hallucinations, loops, and lengthy reasoning, because in my experience, 30-40 t/s isn't bad for development; the real time loss occurs in the areas I mentioned.
Just tried this: https://huggingface.co/froggeric/Qwen-Fixed-Chat-Templates. Works great. Tool calls are super smooth and always successful in hermes-agent now.