Image-Text-to-Text
Safetensors
English
qwen3_5
qwen3.5
gptq
int8
quantized
coding
agentic
vlm
vision
conversational
8-bit precision
Instructions to use raydelossantos/OmniCoder-9B-GPTQ-Int8 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps
- vLLM
How to use raydelossantos/OmniCoder-9B-GPTQ-Int8 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "raydelossantos/OmniCoder-9B-GPTQ-Int8" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "raydelossantos/OmniCoder-9B-GPTQ-Int8", "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/raydelossantos/OmniCoder-9B-GPTQ-Int8
- SGLang
How to use raydelossantos/OmniCoder-9B-GPTQ-Int8 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 "raydelossantos/OmniCoder-9B-GPTQ-Int8" \ --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": "raydelossantos/OmniCoder-9B-GPTQ-Int8", "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 "raydelossantos/OmniCoder-9B-GPTQ-Int8" \ --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": "raydelossantos/OmniCoder-9B-GPTQ-Int8", "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 raydelossantos/OmniCoder-9B-GPTQ-Int8 with Docker Model Runner:
docker model run hf.co/raydelossantos/OmniCoder-9B-GPTQ-Int8
OmniCoder-9B GPTQ Int8
GPTQ INT8 quantization of Tesslate/OmniCoder-9B — a VLM (Vision-Language Model) for agentic coding with image understanding. Higher quality variant with minimal quality loss.
Architecture
- Type:
Qwen3_5ForConditionalGeneration(VLM backbone) - Base: Qwen3.5-9B hybrid (Gated DeltaNet + full attention, 32 layers)
- Vision encoder: Preserved in BF16 (not quantized) — full image understanding capability
- Fine-tuned on: 425K agentic coding trajectories (LoRA r=64, alpha=32)
- Features: Agentic coding, tool calling, reasoning, long context (262K+), image input
Quantization
- Method: GPTQ via GPTQModel
- Bits: 8, Group: 128, Sym: True
- Calibration: 256 samples from allenai/c4
- Only MLP/FFN layers quantized: gate_proj, up_proj, down_proj
- Kept in BF16: lm_head, embed_tokens, all attention (DeltaNet + full), MTP, vision encoder
- Size: ~13.1 GB (INT8 text model + BF16 vision encoder)
Serving (vLLM >= 0.18.0)
vllm serve raydelossantos/OmniCoder-9B-GPTQ-Int8 \
--dtype float16 \
--trust-remote-code \
--enable-prefix-caching \
--tool-call-parser qwen3_coder \
--reasoning-parser qwen3 \
--enable-auto-tool-choice
Important flags
| Flag | Why |
|---|---|
--enable-prefix-caching |
Recommended — enables KV cache reuse for repeated system prompts |
--dtype float16 |
Better throughput on Ampere GPUs (BF16 weights cast to FP16) |
--trust-remote-code |
Required for Qwen3.5 model type |
Note:
--enforce-eageris not required on vLLM >= 0.18.0. The DeltaNet dtype mismatch was fixed in PR #35256. CUDA graphs with piecewise mode work correctly and provide ~3-4x speedup over eager mode.
Multi-GPU (Tensor Parallel)
# 2x RTX 3060 or similar — fits with TP=2
vllm serve raydelossantos/OmniCoder-9B-GPTQ-Int8 \
--tensor-parallel-size 2 \
--dtype float16 \
--trust-remote-code \
--enable-prefix-caching \
--tool-call-parser qwen3_coder \
--reasoning-parser qwen3 \
--enable-auto-tool-choice
Weight Structure
Weights use the Qwen3_5ForConditionalGeneration layout:
model.language_model.*— quantized text model (GPTQ INT8)model.visual.*— vision encoder (BF16, from base model)lm_head.*— language model head (BF16)
- Downloads last month
- 18