How to use from
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 "RedHatAI/Hy3-NVFP4-FP8" \
    --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": "RedHatAI/Hy3-NVFP4-FP8",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
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 "RedHatAI/Hy3-NVFP4-FP8" \
        --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": "RedHatAI/Hy3-NVFP4-FP8",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

RedHatAI/Hy3-NVFP4-FP8

This is a quantized version of tencent/Hy3 with MoE layers quantized to NVFP4 and attention layers quantized to FP8 block

Usage

This model is intended for deployment with vLLM. You can serve the model using

vllm serve RedHatAI/Hy3-NVFP4-FP8 \
    --tensor-parallel-size 4 \
    --tool-call-parser hy_v3 \
    --enable-auto-tool-choice \
    --reasoning-parser hy_v3 \
    --port 8089

May require https://github.com/vllm-project/vllm/pull/48769 as a prerequisite

Creation Process

https://github.com/vllm-project/llm-compressor/pull/2928

Evaluation

Observed 100% recovery on a limited sample from

inspect eval hf/Idavidrein/gpqa/diamond   --model vllm/RedHatAI/Hy3-NVFP4-FP8 --reasoning-effort high --model-base-url http://localhost:8089/v1
Downloads last month
2,593
Safetensors
Model size
173B params
Tensor type
F32
·
BF16
·
F8_E4M3
·
U8
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for RedHatAI/Hy3-NVFP4-FP8

Base model

tencent/Hy3
Quantized
(68)
this model
Quantizations
1 model