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 "Cyclone-Labs/Twisted-Cyclone-31B" \
    --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": "Cyclone-Labs/Twisted-Cyclone-31B",
		"messages": [
			{
				"role": "user",
				"content": [
					{
						"type": "text",
						"text": "Describe this image in one sentence."
					},
					{
						"type": "image_url",
						"image_url": {
							"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
						}
					}
				]
			}
		]
	}'
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 "Cyclone-Labs/Twisted-Cyclone-31B" \
        --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": "Cyclone-Labs/Twisted-Cyclone-31B",
		"messages": [
			{
				"role": "user",
				"content": [
					{
						"type": "text",
						"text": "Describe this image in one sentence."
					},
					{
						"type": "image_url",
						"image_url": {
							"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
						}
					}
				]
			}
		]
	}'
Quick Links

Twisted-Cyclone-31B

Twisted-Cyclone-31B artwork

Overview

Twisted-Cyclone-31B was created by merging Gemma-4-Novelist-Eclipse-31B, Glimmering-Citrus-31B, Pantheon-Reasoning-31B-1.1, and Versipellis-31B with Gemma-4-31B-it as the base using a custom method.

Merge Configuration
base_model: google/gemma-4-31B-it
models:
  - model: Ateron/Gemma-4-Novelist-Eclipse-31B
  - model: Vortex5/Glimmering-Citrus-31B
  - model: Gryphe/Pantheon-Reasoning-31B-1.1
  - model: Nimbz/Versipellis-31B
merge_method: arcs
chat_template: auto
parameters:
  strength: 0.98
  sharp: 0.52
  voice: 0.68
  envelope: 1.15
  tol: 1e-7
dtype: float32
out_dtype: bfloat16
tokenizer:
  source: union
</details>

Intended Use

Roleplay

Character interaction, dialogue, personas, and multi-turn scenes.

Creative Writing

Drafting fiction, descriptions, dialogue, and scene variations.

Storytelling

Short stories, longer narratives, plot development, and worldbuilding.

Brainstorming

Generating concepts, outlines, alternatives, and writing ideas.

Downloads last month
33
Safetensors
Model size
31B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Cyclone-Labs/Twisted-Cyclone-31B