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 "evolveon/Mistral-7B-Instruct-v0.3-abliterated" \
    --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": "evolveon/Mistral-7B-Instruct-v0.3-abliterated",
		"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 "evolveon/Mistral-7B-Instruct-v0.3-abliterated" \
        --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": "evolveon/Mistral-7B-Instruct-v0.3-abliterated",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

evolveon/Mistral-7B-Instruct-v0.3-abliterated

This is an uncensored version of mistralai/Mistral-7B-Instruct-v0.3 created with abliteration (see this article to know more about it).

Special thanks to @FailSpy for the original code and technique.

Downloads last month
190
Safetensors
Model size
7B params
Tensor type
BF16
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for evolveon/Mistral-7B-Instruct-v0.3-abliterated

Finetuned
(531)
this model
Quantizations
1 model

Space using evolveon/Mistral-7B-Instruct-v0.3-abliterated 1