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 "Dracones/Llama-3.1-Nemotron-70B-Instruct_exl2_3.0bpw" \
    --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": "Dracones/Llama-3.1-Nemotron-70B-Instruct_exl2_3.0bpw",
		"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 "Dracones/Llama-3.1-Nemotron-70B-Instruct_exl2_3.0bpw" \
        --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": "Dracones/Llama-3.1-Nemotron-70B-Instruct_exl2_3.0bpw",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Llama-3.1-Nemotron-70B-Instruct - EXL2 3.0bpw

This is a 3.0bpw EXL2 quant of nvidia/Llama-3.1-Nemotron-70B-Instruct

Details about the model can be found at the above model page.

EXL2 Version

These quants were made with exllamav2 version 0.2.4. Quants made on this version of EXL2 may not work on older versions of the exllamav2 library.

If you have problems loading these models, please update Text Generation WebUI to the latest version.

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

Model tree for Dracones/Llama-3.1-Nemotron-70B-Instruct_exl2_3.0bpw

Dataset used to train Dracones/Llama-3.1-Nemotron-70B-Instruct_exl2_3.0bpw

Collection including Dracones/Llama-3.1-Nemotron-70B-Instruct_exl2_3.0bpw