How to use from the
Use from the
Transformers library
# 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]:]))
Quick Links
Solar-Dawn-31B artwork

Solar-Dawn-31B

Overview

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.

Merge Configuration
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

Intended Use

Roleplay

Character-driven interaction, personas, dialogue, and long-form scenes.

Creative Writing

Fiction, dialogue, atmosphere, descriptions, and stylistic drafting.

Storytelling

Long-form narratives, worldbuilding, continuity, and multi-character plots.

Interactive Fiction

Branching narratives, character interaction, scenario play, and evolving stories.

Downloads last month
127
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/Solar-Dawn-31B

Space using Cyclone-Labs/Solar-Dawn-31B 1