Roleplay
Character-driven interaction, personas, dialogue, and long-form scenes.
How to use Cyclone-Labs/Solar-Dawn-31B with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-text-to-text", model="Cyclone-Labs/Solar-Dawn-31B")
messages = [
{
"role": "user",
"content": [
{"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
{"type": "text", "text": "What animal is on the candy?"}
]
},
]
pipe(text=messages) # Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM
processor = AutoProcessor.from_pretrained("Cyclone-Labs/Solar-Dawn-31B")
model = AutoModelForMultimodalLM.from_pretrained("Cyclone-Labs/Solar-Dawn-31B", device_map="auto")
messages = [
{
"role": "user",
"content": [
{"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
{"type": "text", "text": "What animal is on the candy?"}
]
},
]
inputs = processor.apply_chat_template(
messages,
add_generation_prompt=True,
tokenize=True,
return_dict=True,
return_tensors="pt",
).to(model.device)
outputs = model.generate(**inputs, max_new_tokens=40)
print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:]))How to use Cyclone-Labs/Solar-Dawn-31B with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "Cyclone-Labs/Solar-Dawn-31B"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "Cyclone-Labs/Solar-Dawn-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"
}
}
]
}
]
}'docker model run hf.co/Cyclone-Labs/Solar-Dawn-31B
How to use Cyclone-Labs/Solar-Dawn-31B with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "Cyclone-Labs/Solar-Dawn-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/Solar-Dawn-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"
}
}
]
}
]
}'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/Solar-Dawn-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/Solar-Dawn-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"
}
}
]
}
]
}'How to use Cyclone-Labs/Solar-Dawn-31B with Docker Model Runner:
docker model run hf.co/Cyclone-Labs/Solar-Dawn-31B
Solar-Dawn-31B was created by combining google/gemma-4-31B-it, MRockatansky/Gemma-4-31B-Storymaxxed3, BirdToast/Gemma-4-31B-glimmer-rp-v0.1, Gryphe/Pantheon-Reasoning-31B-1.1, ConicCat/Gemma4-GarnetV3-31B, and bgg1996/Melinoe-Gemma4-31B-VL using a custom merge method.
base_model: google/gemma-4-31B-it
models:
- model: MRockatansky/Gemma-4-31B-Storymaxxed3
- model: BirdToast/Gemma-4-31B-glimmer-rp-v0.1
- model: Gryphe/Pantheon-Reasoning-31B-1.1
- model: ConicCat/Gemma4-GarnetV3-31B
- model: bgg1996/Melinoe-Gemma4-31B-VL
merge_method: fcgs
chat_template: auto
dtype: float32
out_dtype: bfloat16
tokenizer:
source: union
Character-driven interaction, personas, dialogue, and long-form scenes.
Fiction, dialogue, atmosphere, descriptions, and stylistic drafting.
Long-form narratives, worldbuilding, continuity, and multi-character plots.
Branching narratives, character interaction, scenario play, and evolving stories.