schneewolflabs/glamour-opus
Viewer • Updated • 224 • 77
A web-design generator fine-tuned from google/gemma-4-31B-it. Give it a
natural-language brief; it returns a self-contained front-end as three fenced
blocks — html, css, js.
Part of the Glamour project (Schneewolf Labs): an arena + synthetic-data pipeline for web-design generation and critique.
from openai import OpenAI # or any chat client
c = OpenAI(base_url="http://localhost:8000/v1", api_key="x")
c.chat.completions.create(
model="glamour-31b",
messages=[{"role": "user", "content": "Design a neobrutalist pricing page."}],
)
Output is html / css / js fenced blocks. A Q4_K_M GGUF runs in
llama.cpp at ~10 tok/s on a single GB10.
Apache-2.0 (inherited from Gemma 4).