This is an
FP8_BLOCK quantized version of
llmfan46/Ornith-1.0-35B-uncensored-heretic with an
MTP head grafted from
Qwen3.6-35B-A3B for speculative decoding.
1 pip install vllm
2
3 vllm serve AxiangQAQ/Ornith-1.0-35B-uncensored-heretic-FP8-BLOCK \
4 --served-model-name ornith-35b-uncensored-fp8 \
5 --quantization compressed-tensors \
6 --max-model-len 32768 \
7 --gpu-memory-utilization 0.93 \
8 --enable-prefix-caching \
9 --enable-auto-tool-choice \
10 --tool-call-parser qwen3_xml \
11 --reasoning-parser qwen3 \
12 --speculative-config '{"method":"mtp","num_speculative_tokens":3}'
1 vllm serve AxiangQAQ/Ornith-1.0-35B-uncensored-heretic-FP8-BLOCK \
2 --served-model-name ornith-35b-uncensored-fp8 \
3 --host 0.0 .0.0 \
4 --port 8000 \
5 --tensor-parallel-size 1 \
6 --max-model-len 204800 \
7 --max-num-seqs 8 \
8 --max-num-batched-tokens 8192 \
9 --gpu-memory-utilization 0.93 \
10 --dtype bfloat16 \
11 --quantization compressed-tensors \
12 --kv-cache-dtype fp8_e4m3 \
13 --mm-encoder-tp-mode data \
14 --mm-processor-cache-type shm \
15 --mm-shm-cache-max-object-size-mb 512 \
16 --media-io-kwargs '{"video": {"num_frames": -1}}' \
17 --attention-backend flashinfer \
18 --enable-prefix-caching \
19 --enable-chunked-prefill \
20 --generation-config vllm \
21 --max-cudagraph-capture-size 16 \
22 --speculative-config '{"method":"mtp","num_speculative_tokens":3}' \
23 --compilation_config.mode VLLM_COMPILE \
24 --compilation_config.cudagraph_mode PIECEWISE \
25 --reasoning-parser qwen3 \
26 --tool-call-parser qwen3_xml \
27 --enable-auto-tool-choice \
28 --trust-remote-code
1 pip install sglang
2
3 python3 -m sglang.launch_server \
4 --model-path AxiangQAQ/Ornith-1.0-35B-uncensored-heretic-FP8-BLOCK \
5 --host 0.0 .0.0 \
6 --port 30000
1 from transformers import AutoModelForMultimodalLM , AutoProcessor
2
3 model = AutoModelForMultimodalLM . from_pretrained (
4 "AxiangQAQ/Ornith-1.0-35B-uncensored-heretic-FP8-BLOCK" ,
5 torch_dtype = "auto" ,
6 device_map = "auto" ,
7 trust_remote_code = True ,
8 )
9 processor = AutoProcessor . from_pretrained (
10 "AxiangQAQ/Ornith-1.0-35B-uncensored-heretic-FP8-BLOCK" ,
11 trust_remote_code = True ,
12 )
deepreinforce-ai/Ornith-1.0-35B (MIT, original)
└── llmfan46/Ornith-1.0-35B-uncensored-heretic (Heretic v1.2.0 MPOA ablation)
└── AxiangQAQ/Ornith-1.0-35B-uncensored-heretic-FP8-BLOCK (this model)
├── FP8_BLOCK quantization (llmcompressor)
└── MTP head grafted from Qwen/Qwen3.6-35B-A3B (donor only)
1 @misc{ornith-35b,
2 title = {{Ornith-1.0-35B}: Agentic Coding, Open to All},
3 url = {https://deep-reinforce.com/ornith_1_0.html},
4 author = {{DeepReinforce Team}},
5 year = {2026}
6 }