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 "knifeayumu/Negative-Anubis-70B-v1" \
    --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": "knifeayumu/Negative-Anubis-70B-v1",
		"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 "knifeayumu/Negative-Anubis-70B-v1" \
        --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": "knifeayumu/Negative-Anubis-70B-v1",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Enthralling Creatures

Negative Drummer

Enjoyed SicariusSicariiStuff/Negative_LLAMA_70B but the prose was too dry for my tastes. So I merged it with TheDrummer/Anubis-70B-v1 for verbosity. Anubis has positivity bias so Negative could balance things out.

This is a merge of pre-trained language models created using mergekit.

GGUF Quants:

Merge Details

Merge Method

This model was merged using the SLERP merge method.

Models Merged

The following models were included in the merge:

Configuration

The following YAML configuration was used to produce this model:

models:
  - model: SicariusSicariiStuff/Negative_LLAMA_70B
  - model: TheDrummer/Anubis-70B-v1
merge_method: slerp
base_model: TheDrummer/Anubis-70B-v1
parameters:
  t: [0.1, 0.55, 1, 0.55, 0.1]
dtype: bfloat16
Downloads last month
7
Safetensors
Model size
71B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with knifeayumu/Negative-Anubis-70B-v1.

Model tree for knifeayumu/Negative-Anubis-70B-v1

Collection including knifeayumu/Negative-Anubis-70B-v1