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 "tacodevs/Behemoth-R1-123B-v2-FP8-Dynamic" \
    --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": "tacodevs/Behemoth-R1-123B-v2-FP8-Dynamic",
		"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 "tacodevs/Behemoth-R1-123B-v2-FP8-Dynamic" \
        --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": "tacodevs/Behemoth-R1-123B-v2-FP8-Dynamic",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Behemoth-R1-123B-v2 FP8 Dynamic

FP8 Dynamic quantization of TheDrummer/Behemoth-R1-123B-v2 using llmcompressor.

Model Details

  • Base Model: TheDrummer/Behemoth-R1-123B-v2 (Mistral Large 2411 finetune)
  • Quantization: FP8 Dynamic (W8A8) via llmcompressor
  • Scheme: FP8_DYNAMIC, lm_head excluded
  • Size: ~123 GB (vs 246 GB FP16)
  • Format: SafeTensors with compressed-tensors metadata

Usage with vLLM

python3 -m vllm.entrypoints.openai.api_server \
    --model Irvollo/Behemoth-R1-123B-v2-FP8-Dynamic \
    --quantization compressed-tensors \
    --dtype bfloat16 \
    --max-model-len 32768 \
    --gpu-memory-utilization 0.95 \
    --enable-prefix-caching \
    --trust-remote-code

Reasoning / Thinking

Supports native reasoning via <think> tag prefill:

{
  "messages": [
    {"role": "user", "content": "Your question"},
    {"role": "assistant", "content": "<think>\n"}
  ],
  "continue_final_message": true,
  "add_generation_prompt": false
}

Hardware Requirements

  • Single GPU: H200 NVL (141 GB) — tight with ~18 GB KV cache
  • Recommended: 2x A100 80GB or H100 for comfortable KV headroom

Quantization Details

  • Quantized on 2x NVIDIA B200 (358 GB VRAM)
  • Calibration: 616 linear layers in <1 second
  • Total pipeline: ~11 minutes
  • Tool: llmcompressor

Credits

Downloads last month
6
Safetensors
Model size
123B params
Tensor type
BF16
·
F8_E4M3
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for tacodevs/Behemoth-R1-123B-v2-FP8-Dynamic

Quantized
(14)
this model