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 "ChaoticNeutrals/Captain-Eris-Diogenes_Twilight-V0.420-12B" \
    --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": "ChaoticNeutrals/Captain-Eris-Diogenes_Twilight-V0.420-12B",
		"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 "ChaoticNeutrals/Captain-Eris-Diogenes_Twilight-V0.420-12B" \
        --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": "ChaoticNeutrals/Captain-Eris-Diogenes_Twilight-V0.420-12B",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

image/png

image/png

Instruct/Context import + Textgen preset combined available: Here

The following models were included in the merge:

The following YAML configuration was used to produce this model:

slices:
  - sources:
      - model: Nitral-AI/Captain-Eris_Twilight-V0.420-12B
        layer_range: [0, 40]
      - model: Nitral-AI/Diogenes-12B-ChatMLified
        layer_range: [0, 40]
merge_method: slerp
base_model: Nitral-AI/Captain-Eris_Twilight-V0.420-12B
parameters:
  t:
    - filter: self_attn
      value: [0, 0.5, 0.3, 0.7, 1]
    - filter: mlp
      value: [1, 0.5, 0.7, 0.3, 0]
    - value: 0.420
dtype: bfloat16
Downloads last month
24
Safetensors
Model size
12B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with ChaoticNeutrals/Captain-Eris-Diogenes_Twilight-V0.420-12B.

Model tree for ChaoticNeutrals/Captain-Eris-Diogenes_Twilight-V0.420-12B