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 "ARM174G3/Nemotron-Content-Safety-Reasoning-4B-Q8_0-GGUF" \
    --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": "ARM174G3/Nemotron-Content-Safety-Reasoning-4B-Q8_0-GGUF",
		"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 "ARM174G3/Nemotron-Content-Safety-Reasoning-4B-Q8_0-GGUF" \
        --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": "ARM174G3/Nemotron-Content-Safety-Reasoning-4B-Q8_0-GGUF",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Quantized version of nvidia/Nemotron-Content-Safety-Reasoning-4B

This model was converted to GGUF format from nvidia/Nemotron-Content-Safety-Reasoning-4B using llama.cpp tools. Refer to the original model card for more details on the model.

This model was specially converted for my Harmless Terminal Assistant demo project.

Downloads last month
20
GGUF
Model size
5B params
Architecture
gemma3
Hardware compatibility
Log In to add your hardware

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for ARM174G3/Nemotron-Content-Safety-Reasoning-4B-Q8_0-GGUF

Quantized
(4)
this model

Dataset used to train ARM174G3/Nemotron-Content-Safety-Reasoning-4B-Q8_0-GGUF