Instructions to use NANI-Nithin/Ornith-1.5-35B-A3B-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 NANI-Nithin/Ornith-1.5-35B-A3B-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 NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf NANI-Nithin/Ornith-1.5-35B-A3B-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 NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf NANI-Nithin/Ornith-1.5-35B-A3B-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 NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use NANI-Nithin/Ornith-1.5-35B-A3B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "NANI-Nithin/Ornith-1.5-35B-A3B-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": "NANI-Nithin/Ornith-1.5-35B-A3B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M
- Ollama
How to use NANI-Nithin/Ornith-1.5-35B-A3B-GGUF with Ollama:
ollama run hf.co/NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use NANI-Nithin/Ornith-1.5-35B-A3B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M
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": "NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use NANI-Nithin/Ornith-1.5-35B-A3B-GGUF with Docker Model Runner:
docker model run hf.co/NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M
- Lemonade
How to use NANI-Nithin/Ornith-1.5-35B-A3B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Ornith-1.5-35B-A3B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use NANI-Nithin/Ornith-1.5-35B-A3B-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 NANI-Nithin/Ornith-1.5-35B-A3B-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 NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use NANI-Nithin/Ornith-1.5-35B-A3B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M
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 "NANI-Nithin/Ornith-1.5-35B-A3B-GGUF:Q4_K_M" \ --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"
Ornith-1.5-35B-A3B GGUF
GGUF quantizations of ornith-ai/Ornith-1.5-35B-A3B for use with llama.cpp, KoboldCpp, LM Studio, Open WebUI, Jan, and other GGUF-compatibledel
Ornith-1.5-35B-A3B is a Qwen3.5-MoE vision-language model featuring:
- 40 transformer layers
- Hybrid attention architecture combining:
- Gated DeltaNet linear attention (3 out of every 4 layers)
- Full attention layers
- Mixture-of-Experts architecture
- 256 routed experts
- 8 experts active per token
- 1 MTP layer
- MRoPE positional encoding
- Hugging Face architecture:
Qwen3_5MoeForConditionalGenerationmodel_type: qwen3_5_moe
The upstream llama.cpp runtime supports the model family natively, including conversion, inference, importance matrix generation, and quantization.
Note: These GGUF files are text-only. The vision tower present in the original VLM checkpoint is skipped during GGUF conversion, which is standard practice for current llama.cpp VLM conversions.
Conversion Notes
This repository was generated directly from the original Hugging Face checkpoint using the current upstream llama.cpp conversion pipeline.
Because the original safetensors checkpoint is approximately 72 GB, generating a BF16 GGUF would require more temporary disk space than was available on the build machine.
Instead:
- The checkpoint was converted directly to a Q8_0 GGUF
- The Q8_0 file was uploaded as the highest-quality quant
- All other quantizations were generated from that Q8_0 source using
llama-quantize
This approach is standard in the llama.cpp ecosystem and produces effectively lossless source material for subsequent K-Quant and IQ-Quant generation.
Quantizations
Standard Quants
| Quant | Recommended Use |
|---|---|
| Q2_K | Maximum compression |
| Q3_K_S | Very low-memory inference |
| Q3_K_M | Budget quality/runtime balance |
| Q3_K_L | Best Q3 variant |
| Q4_0 | Legacy compatibility |
| Q4_1 | Legacy quality-focused quant |
| Q4_K_S | Small Q4_K variant |
| Q4_K_M | Recommended general-purpose quant |
| Q5_K_S | Compact high-quality quant |
| Q5_K_M | Excellent quality/size tradeoff |
| Q6_K | Near-Q8 quality |
| Q8_0 | Highest quality quant in this repo |
IQ Quants
Generated using a llama.cpp importance matrix.
| Quant |
|---|
| IQ2_M |
| IQ3_XXS |
| IQ3_XS |
| IQ3_M |
| IQ4_XS |
| IQ4_NL |
Importance Matrix
IQ quantizations were generated using a llama.cpp importance matrix built from WikiText-2 calibration data.
To accommodate the build machine's memory constraints:
- Imatrix generation was performed on a temporary Q2_K model
- WikiText-2 was used as calibration data
- The resulting imatrix was then applied during IQ quantization
Recommended Files
Largest Quality
Q8_0
Use if storage and RAM are not concerns and you want the best quality available in this repository.
Best Overall
Q4_K_M
Recommended for most users.
Provides an excellent balance between quality, speed, memory usage, and disk footprint.
Higher Quality
Q5_K_M
Recommended for users with additional RAM who want quality closer to Q6/Q8 while keeping storage reasonable.
Maximum Compression
Q2_K
For extremely constrained systems where fitting the model matters more than quality.
llama.cpp Usage
Example:
llama-cli \
-m Ornith-1.5-35B-A3B-Q4_K_M.gguf \
-c 8192
Server:
llama-server \
-m Ornith-1.5-35B-A3B-Q4_K_M.gguf
Compatibility
These files should work in:
- llama.cpp
- LM Studio
- KoboldCpp
- Open WebUI
- Jan
- Text Generation WebUI (llama.cpp backends)
- Any GGUF-compatible runtime with support for Qwen3.5-MoE architectures
For best compatibility, use a recent build of llama.cpp or a frontend based on a recent llama.cpp release.
Credits
Original Model
- ornith-ai for Ornith-1.5-35B-A3B
GGUF Conversion & Quantization
- Generated using upstream llama.cpp
- Quantized and uploaded by NANI-Nithin
Disclaimer
This repository contains quantized derivatives of the original model. All model behavior, training data, capabilities, and limitations originate from the base model authors.
Please review the original model card for licensing terms, intended use, limitations, and safety considerations.
- Downloads last month
- 1,020
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
Model tree for NANI-Nithin/Ornith-1.5-35B-A3B-GGUF
Base model
ornith-ai/Ornith-1.5-35B-A3B