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 "Vortex5/Crimson-Constellation-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": "Vortex5/Crimson-Constellation-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 "Vortex5/Crimson-Constellation-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": "Vortex5/Crimson-Constellation-12B",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Crimson-Constellation-12B

Overview

Crimson-Constellation-12B was created through a multi-stage merge combining Maroon-Sunset-12B, Scarlet-Seraph-12B, Amber-Starlight-12B, and Shining-Seraph-12B.

Multi-stage merge configuration
name: First
models:
  - model: Vortex5/Maroon-Sunset-12B
merge_method: nearswap
base_model: Vortex5/Scarlet-Seraph-12B
parameters:
  t: 0.0008
dtype: float32
---
name: Second
models:
  - model: Vortex5/Amber-Starlight-12B
merge_method: nearswap
base_model: Vortex5/Shining-Seraph-12B
parameters:
  t: 0.0008
dtype: float32
---
models:
  - model: First
  - model: Second
merge_method: karcher
chat_template: auto
dtype: float32
out_dtype: bfloat16
parameters:
  tol: 1e-9
  max_iter: 1000
tokenizer:
  source: Vortex5/Shining-Seraph-12B

Intended Use

Storytelling Structured long-form narrative
Roleplay Emotion-forward interaction
Creative Writing Atmospheric fiction
Downloads last month
83
Safetensors
Model size
12B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Vortex5/Crimson-Constellation-12B