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 "ModelsLab/Llama-3.1-8b-Uncensored-Dare" \
    --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": "ModelsLab/Llama-3.1-8b-Uncensored-Dare",
		"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 "ModelsLab/Llama-3.1-8b-Uncensored-Dare" \
        --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": "ModelsLab/Llama-3.1-8b-Uncensored-Dare",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Llama-3.1-8b-Uncensored-Dare

Llama-3.1-8b-Uncensored-Dare is a merge of the following models using mergekit:

🧩 Configuration

```yaml models:

  • model: Orenguteng/Llama-3.1-8B-Lexi-Uncensored
  • model: aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.0-Uncensored parameters: density: 0.53 weight: 0.4
  • model: aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored parameters: density: 0.53 weight: 0.3
  • model: Orenguteng/Llama-3-8B-Lexi-Uncensored parameters: density: 0.53 weight: 0.2
  • model: aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.1-Uncensored parameters: density: 0.53 weight: 0.1 merge_method: dare_ties base_model: Orenguteng/Llama-3.1-8B-Lexi-Uncensored parameters: int8_mask: true dtype: bfloat16 ```
Downloads last month
23
Safetensors
Model size
8B params
Tensor type
BF16
Β·
Inference Providers NEW
Input a message to start chatting with ModelsLab/Llama-3.1-8b-Uncensored-Dare.

Model tree for ModelsLab/Llama-3.1-8b-Uncensored-Dare

Quantizations
1 model

Spaces using ModelsLab/Llama-3.1-8b-Uncensored-Dare 7