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/Luminous-Mirror-26B-A4B" \
    --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/Luminous-Mirror-26B-A4B",
		"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 "Vortex5/Luminous-Mirror-26B-A4B" \
        --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/Luminous-Mirror-26B-A4B",
		"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

Luminous-Mirror-26B-A4B

Luminous-Mirror-26B-A4B artwork

Overview

Luminous-Mirror-26B-A4B was created by merging gemma-4-26B-A4B-it-Claude-Opus-Distill-v2, For-Her-Darkside-26B-A4B-v1.4, gemma4-26b-fiction-bf16, and Gemma-4-26B-A4B-it using a custom method.

Merge configuration
base_model: google/gemma-4-26B-A4B-it
models:
  - model: TeichAI/gemma-4-26B-A4B-it-Claude-Opus-Distill-v2
  - model: ReadyArt/For-Her-Darkside-26B-A4B-v1.4
  - model: electroglyph/gemma4-26b-fiction-bf16
merge_method: arcs
chat_template: auto
parameters:
  strength: 0.92
  sharp: 0.55
  voice: 0.45
  envelope: 1.15
  tol: 1e-7
dtype: float32
out_dtype: bfloat16
tokenizer:
  source: union

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
248
Safetensors
Model size
26B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Vortex5/Luminous-Mirror-26B-A4B