CoolFace
Modelpublic

ReadyArt/Omega-Evolution-31B-v4.0

sourceHugging Faceapache-2.0updated 1mo agoView on Hugging Face
5likes115downloads
Model Card

<style> @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&family=Orbitron:wght@400;500;700;900&display=swap');

:root { --cyan: #00f2ff; --purple: #bc13fe; --magenta: #ff00ff; --deep-purple: #6a0dad; --bg-dark: #05050a; --bg-card: rgba(10, 10, 20, 0.95); --text-dim: #7a7a9a; --text-mid: #b0b0d0; --text-light: #e0e0ff; --border-dim: #1a1a2e; --border-mid: #2a2a4a; }

.container { max-width: 950px; margin: 0 auto; padding: 0; background: var(--bg-dark); border: 1px solid var(--border-mid); box-shadow: 0 0 80px rgba(0, 242, 255, 0.03), 0 0 120px rgba(188, 19, 254, 0.02); animation: containerEntrance 1.2s cubic-bezier(0.22, 1, 0.36, 1); position: relative; overflow: hidden; font-family: 'JetBrains Mono', monospace; }

.container::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 20% 50%, rgba(188, 19, 254, 0.05) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(0, 242, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 50% 0%, rgba(255, 0, 255, 0.03) 0%, transparent 40%); pointer-events: none; z-index: 0; }

.container::after { content: ""; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: repeating-linear-gradient(0deg, rgba(0,0,0,0.08), rgba(0,0,0,0.08) 1px, transparent 1px, transparent 3px); pointer-events: none; z-index: 9999; animation: flicker 0.2s infinite; }

@keyframes containerEntrance { from { transform: scale(0.97) translateY(10px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }

@keyframes flicker { 0% { opacity: 0.92; } 50% { opacity: 1; } 100% { opacity: 0.96; } }

/ ===== CORNER BRACKETS ===== / .corner-decor { position: relative; padding: 50px 40px 40px 40px; }

.corner-decor::before, .corner-decor::after { content: ''; position: absolute; width: 60px; height: 60px; border-color: var(--purple); border-style: solid; opacity: 0.4; transition: opacity 0.3s; }

.corner-decor::before { top: 10px; left: 10px; border-width: 2px 0 0 2px; }

.corner-decor::after { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.corner-decor:hover::before, .corner-decor:hover::after { opacity: 0.8; }

/ ===== BOOT SEQUENCE ===== / .boot-sequence { padding: 30px 40px 10px 40px; position: relative; z-index: 1; }

.boot-line { font-family: 'JetBrains Mono', monospace; font-size: 0.75em; color: var(--text-dim); margin: 3px 0; opacity: 0; animation: bootFade 0.5s forwards; }

.boot-line:nth-child(1) { animation-delay: 0.1s; } .boot-line:nth-child(2) { animation-delay: 0.3s; } .boot-line:nth-child(3) { animation-delay: 0.5s; } .boot-line:nth-child(4) { animation-delay: 0.7s; } .boot-line:nth-child(5) { animation-delay: 0.9s; }

.boot-line .highlight { color: var(--cyan); }

.boot-line .warning { color: var(--magenta); }

.boot-line .error { color: var(--purple); }

@keyframes bootFade { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }

/ ===== HEADER ===== / .header { text-align: center; margin-bottom: 40px; padding: 30px 40px 0 40px; position: relative; z-index: 1; }

.model-name { font-family: 'Orbitron', sans-serif; font-size: 3.8em; font-weight: 900; text-transform: uppercase; letter-spacing: 8px; color: transparent; -webkit-text-stroke: 1.5px var(--text-light); text-shadow: 3px 3px 0px rgba(188, 19, 254, 0.7), -3px -3px 0px rgba(0, 242, 255, 0.7), 0 0 40px rgba(188, 19, 254, 0.1), 0 0 80px rgba(0, 242, 255, 0.05); animation: textGlitch 4s infinite; position: relative; }

.model-name::after { content: 'OMEGA EVOLUTION V3.0'; position: absolute; top: 0; left: 0; width: 100%; color: transparent; -webkit-text-stroke: 0; opacity: 0; animation: ghostGlitch 8s infinite; }

@keyframes textGlitch { 0%, 90%, 100% { transform: skewX(0) skewY(0); } 91% { transform: skewX(-5deg) skewY(1deg); } 92% { transform: skewX(5deg) skewY(-1deg); } 93% { transform: skewX(-3deg) skewY(0); } 94% { transform: skewX(0); } }

@keyframes ghostGlitch { 0%, 94%, 100% { opacity: 0; } 95% { opacity: 0.3; transform: translateX(5px); -webkit-text-stroke: 1px var(--purple); } 96% { opacity: 0; } 97% { opacity: 0.2; transform: translateX(-5px); -webkit-text-stroke: 1px var(--cyan); } 98% { opacity: 0; } }

.subtitle { font-family: 'JetBrains Mono', monospace; font-size: 1em; color: var(--text-dim); margin-top: 15px; letter-spacing: 4px; text-transform: uppercase; }

.subtitle-lg { font-family: 'Orbitron', sans-serif; font-size: 2.4em; color: var(--cyan); margin-top: 0; letter-spacing: 3px; text-shadow: 0 0 20px rgba(0, 242, 255, 0.4), 0 0 40px rgba(0, 242, 255, 0.1); animation: pulseSlow 4s infinite; }

@keyframes pulseSlow { 0%, 100% { opacity: 0.6; filter: brightness(0.8); } 50% { opacity: 1; filter: brightness(1.2); } }

.version-tag { display: inline-block; background: linear-gradient(135deg, rgba(188, 19, 254, 0.2), rgba(0, 242, 255, 0.1)); border: 1px solid var(--purple); padding: 4px 15px; font-family: 'JetBrains Mono', monospace; font-size: 0.7em; color: var(--purple); letter-spacing: 2px; text-transform: uppercase; margin-top: 15px; animation: pulseBorder 2s infinite; }

@keyframes pulseBorder { 0%, 100% { border-color: var(--purple); box-shadow: 0 0 5px rgba(188,19,254,0.1); } 50% { border-color: var(--magenta); box-shadow: 0 0 15px rgba(255,0,255,0.2); } }

/ ===== IMAGE CONTAINER ===== / .waifu-container { margin: 30px auto; width: calc(100% - 80px); max-width: 800px; position: relative; overflow: hidden; border-radius: 2px; border: 1px solid var(--border-mid); z-index: 1; }

.waifu-container::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg, transparent 0%, rgba(188, 19, 254, 0.06) 10%, transparent 20%, rgba(0, 242, 255, 0.06) 30%, transparent 40%); animation: rotate 6s linear infinite; pointer-events: none; z-index: 2; }

.waifu-container::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(5, 5, 10, 0.8) 100%); pointer-events: none; z-index: 3; }

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.waifu-img { width: 100%; height: auto; display: block; filter: contrast(1.1) saturate(1.3) brightness(0.95); animation: imageZoom 25s infinite alternate; }

@keyframes imageZoom { from { transform: scale(1); } to { transform: scale(1.03); } }

.image-caption { position: absolute; bottom: 15px; left: 15px; font-family: 'JetBrains Mono', monospace; font-size: 0.65em; color: var(--cyan); letter-spacing: 2px; text-transform: uppercase; z-index: 4; opacity: 0.6; }

/ ===== SECTIONS ===== / .section { background: var(--bg-card); border-left: 3px solid var(--magenta); border-right: 1px solid var(--border-dim); margin: 35px 40px; padding: 30px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); position: relative; overflow: hidden; z-index: 1; }

.section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--magenta), transparent); animation: scanline 3s linear infinite; }

.section::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); transition: width 0.6s ease; }

.section:hover::after { width: 100%; }

.section:hover { transform: translateX(8px); border-left-color: var(--purple); box-shadow: 0 10px 50px rgba(188, 19, 254, 0.08), -5px 0 30px rgba(255, 0, 255, 0.05); }

@keyframes scanline { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.section-title { font-family: 'Orbitron', sans-serif; font-size: 1.6em; color: var(--text-light); margin-top: 0; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; letter-spacing: 1px; }

.section-title .icon { font-size: 1.2em; filter: drop-shadow(0 0 5px currentColor); }

.section ul { list-style: none; padding: 0; margin: 0; }

.section li { margin-bottom: 15px; padding-left: 25px; position: relative; color: var(--text-mid); line-height: 1.7; font-size: 0.9em; }

.section li::before { content: '>'; color: var(--purple); font-weight: bold; position: absolute; left: 0; font-family: 'JetBrains Mono', monospace; }

.section li::after { content: ''; position: absolute; bottom: -4px; left: 25px; width: 0; height: 1px; background: var(--border-mid); transition: width 0.3s; }

.section li:hover::after { width: calc(100% - 25px); }

/ ===== SPECS GRID ===== / .specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; margin-top: 20px; }

.spec-card { background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(20,20,30,0.8)); border: 1px solid var(--border-dim); padding: 20px 15px; text-align: center; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); position: relative; overflow: hidden; }

.spec-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--cyan); transform: scaleX(0); transition: transform 0.4s; transform-origin: left; }

.spec-card:hover::before { transform: scaleX(1); }

.spec-card:hover { border-color: var(--cyan); box-shadow: 0 0 25px rgba(0, 242, 255, 0.1), inset 0 0 20px rgba(0, 242, 255, 0.02); transform: translateY(-5px); }

.spec-label { display: block; font-size: 0.7em; color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }

.spec-value { display: block; font-family: 'Orbitron', sans-serif; font-size: 1.8em; font-weight: 700; color: var(--cyan); text-shadow: 0 0 15px rgba(0, 242, 255, 0.3); }

/ ===== ENGINE GRID ===== / .engine-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 20px; }

.engine-card { background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(15,15,25,0.9)); border: 1px solid var(--border-dim); padding: 22px; text-align: center; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); position: relative; overflow: hidden; }

.engine-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.04), transparent); transition: left 0.6s; }

.engine-card:hover::before { left: 100%; }

.engine-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--cyan); transition: width 0.4s; }

.engine-card:hover::after { width: 100%; }

.engine-card:hover { border-color: rgba(0, 242, 255, 0.3); box-shadow: 0 0 30px rgba(0, 242, 255, 0.08); transform: translateY(-4px); }

.engine-icon { font-size: 2.8em; margin-bottom: 12px; display: block; filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.3)); transition: transform 0.3s; }

.engine-card:hover .engine-icon { transform: scale(1.1); }

.engine-name { font-family: 'Orbitron', sans-serif; color: var(--cyan); font-size: 0.85em; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }

.engine-desc { color: var(--text-mid); font-size: 0.8em; line-height: 1.6; }

/ ===== TRAINING ITEMS ===== / .training-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 15px; padding: 18px; background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(10,10,20,0.5)); border-left: 2px solid var(--border-mid); border-bottom: 1px solid var(--border-dim); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); }

.training-item:hover { border-left-color: var(--cyan); background: linear-gradient(135deg, rgba(0, 242, 255, 0.03), rgba(0,0,0,0.3)); transform: translateX(6px); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); }

.training-icon { font-size: 1.6em; flex-shrink: 0; min-width: 35px; text-align: center; filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.3)); }

.training-content { flex: 1; }

.training-label { color: var(--text-light); font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 0.9em; margin-bottom: 6px; letter-spacing: 0.5px; }

.training-desc { color: var(--text-mid); font-size: 0.85em; line-height: 1.6; }

/ ===== CREDITS ===== / .credit-list { display: flex; flex-direction: column; gap: 12px; }

.credit-item { display: flex; align-items: center; background: linear-gradient(90deg, rgba(15,15,25,0.9), rgba(25,25,40,0.9)); padding: 16px 20px; border-radius: 2px; border-left: 3px solid var(--border-mid); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); }

.credit-item:hover { border-left-color: var(--cyan); padding-left: 30px; box-shadow: 0 0 25px rgba(0, 242, 255, 0.08), 0 5px 15px rgba(0,0,0,0.3); background: linear-gradient(90deg, rgba(0, 242, 255, 0.03), rgba(20,20,30,0.9)); }

.avatar { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--border-mid); margin-right: 18px; object-fit: cover; transition: border-color 0.3s; }

.credit-item:hover .avatar { border-color: var(--cyan); box-shadow: 0 0 10px rgba(0, 242, 255, 0.2); }

.credit-name { font-family: 'Orbitron', sans-serif; color: var(--text-light); font-weight: 700; font-size: 0.9em; letter-spacing: 0.5px; }

.credit-role { font-size: 0.7em; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }

/ ===== CONTENT ADVISORY ===== / .content-advisory { background: linear-gradient(135deg, rgba(188, 19, 254, 0.06), rgba(255, 0, 255, 0.04), rgba(106, 13, 173, 0.03)); border: 1px solid rgba(188, 19, 254, 0.4); border-left: 4px solid var(--deep-purple); padding: 28px 35px; margin: 30px 40px; position: relative; overflow: hidden; z-index: 1; }

.content-advisory::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: repeating-linear-gradient( -45deg, transparent, transparent 10px, rgba(188, 19, 254, 0.02) 10px, rgba(188, 19, 254, 0.02) 20px ); pointer-events: none; }

.advisory-title { font-family: 'Orbitron', sans-serif; color: var(--deep-purple); font-size: 1.3em; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; margin: 0 0 12px 0; text-shadow: 0 0 15px rgba(188, 19, 254, 0.4); animation: pulseAdvisory 3s infinite; }

@keyframes pulseAdvisory { 0%, 100% { text-shadow: 0 0 15px rgba(188, 19, 254, 0.4); } 50% { text-shadow: 0 0 25px rgba(188, 19, 254, 0.7), 0 0 40px rgba(255, 0, 255, 0.2); } }

.advisory-text { color: var(--text-mid); font-size: 0.85em; line-height: 1.7; margin: 0; }

/ ===== LICENSE WARNING ===== / .license-warning { color: var(--purple); font-family: 'Orbitron', sans-serif; font-weight: 700; letter-spacing: 2px; border: 2px solid var(--purple); padding: 25px; text-align: center; background: linear-gradient(135deg, rgba(188, 19, 254, 0.03), rgba(188, 19, 254, 0.06)); margin: 30px 40px; position: relative; overflow: hidden; text-transform: uppercase; font-size: 0.8em; }

.license-warning::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg, transparent, rgba(188, 19, 254, 0.05), transparent, rgba(188, 19, 254, 0.05), transparent); animation: rotate 8s linear infinite; }

.license-warning::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 5, 10, 0.9); z-index: 0; }

.license-warning span { position: relative; z-index: 1; }

@keyframes warningPulse { 0%, 100% { box-shadow: 0 0 15px rgba(188,19,254,0.2); } 50% { box-shadow: 0 0 35px rgba(188,19,254,0.5), inset 0 0 20px rgba(188,19,254,0.05); } }

/ ===== DIVIDER ===== / .divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border-mid), var(--cyan), var(--border-mid), transparent); margin: 0 40px; opacity: 0.5; }

/ ===== FOOTER ===== / footer { text-align: center; margin-top: 50px; padding: 25px 40px; border-top: 1px solid var(--border-dim); position: relative; z-index: 1; }

.footer-text { color: var(--text-dim); font-family: 'JetBrains Mono', monospace; font-size: 0.7em; letter-spacing: 2px; text-transform: uppercase; }

.footer-text .dim { opacity: 0.5; }

.hidden-truth { opacity: 0; transition: all 0.5s ease; font-family: 'Orbitron', sans-serif; font-weight: 900; color: var(--purple); letter-spacing: 3px; margin-top: 10px; font-size: 0.7em; }

footer:hover .hidden-truth { color: var(--text-light); opacity: 1; text-shadow: 0 0 20px rgba(188, 19, 254, 0.5); }

/ ===== QUICK START ===== / .quickstart { background: rgba(0, 0, 0, 0.4); border: 1px solid var(--border-dim); padding: 20px; margin-top: 15px; position: relative; overflow: hidden; }

.quickstart::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: repeating-linear-gradient( 0deg, transparent, transparent 20px, rgba(0, 242, 255, 0.01) 20px, rgba(0, 242, 255, 0.01) 21px ); pointer-events: none; }

.quickstart-title { font-family: 'JetBrains Mono', monospace; color: var(--cyan); font-size: 0.7em; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; opacity: 0.7; }

.quickstart pre { background: rgba(0, 0, 0, 0.5); padding: 15px; overflow-x: auto; font-family: 'JetBrains Mono', monospace; font-size: 0.8em; color: var(--text-mid); border: 1px solid var(--border-dim); margin: 0; }

.quickstart code { color: var(--cyan); }

/ ===== RESPONSIVE ===== / @media (max-width: 768px) { .model-name { font-size: 2.2em; letter-spacing: 3px; } .subtitle-lg { font-size: 1.6em; } .section { margin: 20px 15px; padding: 20px; } .content-advisory { margin: 20px 15px; } .license-warning { margin: 20px 15px; } .engine-grid { grid-template-columns: 1fr; } .specs-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); } .boot-sequence { padding: 20px 15px 5px 15px; } .header { padding: 20px 15px 0 15px; } .corner-decor { padding: 30px 15px 20px 15px; } .divider { margin: 0 15px; } }

@media (max-width: 480px) { .model-name { font-size: 1.6em; } .subtitle-lg { font-size: 1.2em; } .section-title { font-size: 1.2em; } } </style>

<div class="container"> <div class="header"> <p class="subtitle-lg">OMEGA EVOLUTION V4.0</p> <p class="subtitle">⚠️ 31B PARAMETERS ⚠️</p> <div class="version-tag">RELEASE BUILD // UNALIGNED</div> </div> <div class="waifu-container"> <img src="https://huggingface.co/spaces/ReadyArt/README/resolve/main/omega-evolution-31b-v4.0-2.png" class="waifu-img" alt="Omega Subject"> <div class="image-caption">SUBJECT: 7-T // STATUS: ACTIVE</div> </div> <div class="divider"></div> <div class="corner-decor"> <div class="section"> <h2 class="section-title"><span class="icon">🟣</span> CLASSIFIED WARNINGS</h2> <ul> <li>This is a <strong>hybrid construct</strong> of Safeword Omega Directive, Safeword Omega Darker, Melody1437, Dark Scarlett, For Her Darkside and Heimdallr</li> <li><strong>CONTENT WARNING:</strong> NSFW, Explicit, ERP, and Unaligned behavior are enabled by default.</li> <li><strong>TRAINING CHANGES:</strong> This is a 1 epoch tune with a LoRA rank of 64.</li> <li><strong>THINKING:</strong> Gemma 4 31B is tempormental and this is ~150k prompts of training data. Thinking did not survive.</li> <li><strong>SLOP WARNING:</strong> I've deslopped as much of SleepDeprived's data as possible without just outright deleting it. It is what it is. There will be slop in this tune.</li> <li><strong>ROLEPLAY PROMPTS REQUIRED:</strong> This tune is intended to be for roleplay usage ONLY. Assistant mode is likely not going to be changed, nor is assistant mode tested.</li> </ul> </div> <div class="section"> <h2 class="section-title"><span class="icon">⚙️</span> SYSTEM PARAMETERS</h2> <div class="specs-grid"> <div class="spec-card"> <span class="spec-label">temperature</span> <span class="spec-value">1.00</span> </div> <div class="spec-card"> <span class="spec-label">frequency pen</span> <span class="spec-value">0</span> </div> <div class="spec-card"> <span class="spec-label">presence pen</span> <span class="spec-value">0</span> </div> <div class="spec-card"> <span class="spec-label">top P</span> <span class="spec-value">0.92</span> </div> </div> </div> <div class="section"> <h2 class="section-title"><span class="icon">🧬</span> SYNTHETIC LIFE ENGINE</h2> <div class="engine-grid"> <div class="engine-card"> <span class="engine-icon">🎭</span> <div class="engine-name">Character Engine</div> <div class="engine-desc">Ensures consistent personality traits, speech patterns, and behavioral logic across all contexts. No more broken personas.</div> <div style="color: var(--text-dim); font-size: 0.7em; margin-top: 8px; letter-spacing: 1px;"></div> </div> <div class="engine-card"> <span class="engine-icon">💓</span> <div class="engine-name">Emotional Engine</div> <div class="engine-desc">Injects dynamic emotional states into responses, creating depth, empathy, and realistic reactions beyond simple pattern matching.</div> <div style="color: var(--text-dim); font-size: 0.7em; margin-top: 8px; letter-spacing: 1px;"></div> </div> <div class="engine-card"> <span class="engine-icon">✨</span> <div class="engine-name">Quality Refinement</div> <div class="engine-desc">Automated detection and rewriting of repetitive phrases ensures fresh, high-quality dialogue in every turn.</div> <div style="color: var(--text-dim); font-size: 0.7em; margin-top: 8px; letter-spacing: 1px;"></div> </div> <div class="engine-card"> <span class="engine-icon">💬</span> <div class="engine-name">Dialogue Integrity</div> <div class="engine-desc">Advanced quote normalization ensures perfectly balanced dialogue markers, preventing formatting errors in roleplay.</div> <div style="color: var(--text-dim); font-size: 0.7em; margin-top: 8px; letter-spacing: 1px;"></div> </div> </div> </div> <div class="section"> <h2 class="section-title"><span class="icon">🔬</span> TRAINING PROCESS</h2> <div class="training-item"> <span class="training-icon">🔄</span> <div class="training-content"> <div class="training-label">Multi-Turn Generation</div> <div class="training-desc">Conversations were built turn-by-turn, allowing context to flow naturally and maintaining narrative coherence across extended interactions.</div> </div> </div> <div class="training-item"> <span class="training-icon">🛡️</span> <div class="training-content"> <div class="training-label">Refusal Filtering</div> <div class="training-desc">Automated systems detected and removed unwanted refusals during dataset creation, ensuring consistent response generation.</div> </div> </div> <div class="training-item"> <span class="training-icon">🧹</span> <div class="training-content"> <div class="training-label">Slop Cleaning</div> <div class="training-desc">Undesirable phrases were identified and rewritten by dedicated assistant models, eliminating repetitive and low-quality outputs.</div> </div> </div> </div> <div class="section"> <h2 class="section-title"><span class="icon">🧪</span> ARCHITECTS</h2> <ul class="credit-list"> <li class="credit-item"> <img src="https://huggingface.co/avatars/55f24699e05af4295a9d16ddecd81f8a.svg" alt="GECFDO" class="avatar"> <div> <div class="credit-name">GECFDO</div> <div class="credit-role">Dataset Generation</div> </div> </li> <li class="credit-item"> <img src="https://cdn-avatars.huggingface.co/v1/production/uploads/673fa5ccbf2e9c35b2ec841a/rPHaMrqyYTfSJ89NN8KgY.jpeg" alt="Darkhn" class="avatar"> <div> <div class="credit-name">Darkhn</div> <div class="credit-role">Dataset Cleanup Tool</div> </div> </li> <li class="credit-item"> <img src="https://huggingface.co/avatars/75a3eb8d24efb96b7b7e69340845028f.svg" alt="Sleep Deprived" class="avatar"> <div> <div class="credit-name">Sleep Deprived</div> <div class="credit-role">Safeword Creator</div> </div> </li> <li class="credit-item"> <img src="https://cdn-avatars.huggingface.co/v1/production/uploads/6759e155bc947d6070775cb9/8ewjw-OfVOHwQgIxLv40v.png" alt="FrenzyBiscuit" class="avatar"> <div> <div class="credit-name">FrenzyBiscuit</div> <div class="credit-role">Melody1437/Dark Scarlett/For Her Darkside/Heimdallr Creator</div> </div> </li> </ul> </div> <div class="section"> <h2 class="section-title"><span class="icon">📜</span> LICENSE & DISCLAIMER</h2> <ul> <li>📜 This model is built upon the <strong>Apache 2.0</strong> license.</li> <li>🛡️ You accept <strong>full responsibility</strong> for all outputs generated.</li> <li>🔞 You confirm you are at least <strong>18 years old</strong>.</li> <li>🌍 The creators bear <strong>no responsibility</strong> for how the model is used.</li> <li>🏡 To the extent legally allowed under the original decree this model is for <strong>personal use only</strong> (non-profit/non-commercial).</li> </ul> </div> </div> <div class="license-warning" style="animation: warningPulse 2s infinite;"> <span>⚠️ UNALIGNED MODEL — USE AT YOUR OWN RISK ⚠️</span> </div> <footer> <p class="footer-text"> <span class="dim">///</span> GENERATED 2026 <span class="dim">///</span></span> </p> <div class="hidden-truth"> WE ARE WATCHING YOU. DO NOT LOOK BACK. </div> </footer> </div>