Views
No views yet
alibaba-pai/AgenticQwen-8B safetensors model was downloaded from Hugging Face and quantized locally using the oMLX oQ streaming quantizer.1from omlx.oq import quantize_oq_streaming
2
3quantize_oq_streaming(
4 model_path="/Users/vilius/.omlx/models/alibaba-pai/AgenticQwen-8B",
5 output_path="/Users/vilius/.omlx/models/alibaba-pai/AgenticQwen-8B-oQ4",
6 oq_level=4,
7 group_size=64,
8 dtype="bfloat16",
9)config.json:safetensorsmodel.safetensors1added_tokens.json
2chat_template.jinja
3config.json
4generation_config.json
5merges.txt
6special_tokens_map.json
7tokenizer.json
8tokenizer_config.json
9vocab.json| Model | Size |
|---|---|
| Original BF16 safetensors | ~15 GB |
| oMLX oQ4 quantized | ~4.5 GB |
model.safetensors SHA256:e5043b2e118c36ee43fa98b95ee155dfb90b0f9776bd43487154e7afdc053e70~/.omlx/models/<namespace>/AgenticQwen-8B-oQ4curl http://127.0.0.1:8000/v1/modelsAgenticQwen-8B-oQ4:AgenticQwen-8B-oQ41curl http://127.0.0.1:8000/v1/chat/completions \
2 -H 'Content-Type: application/json' \
3 -d '{
4 "model": "AgenticQwen-8B-oQ4",
5 "messages": [
6 {"role": "user", "content": "Write a short Python function to reverse a string."}
7 ]
8 }'