sleepdeprived3 commited on
Commit
452742d
Β·
verified Β·
1 Parent(s): e8a6bd9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +323 -5
README.md CHANGED
@@ -1,5 +1,323 @@
1
- ---
2
- license: other
3
- license_name: other
4
- license_link: LICENSE
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - roleplay
5
+ - text-generation
6
+ - nsfw
7
+ - explicit
8
+ - unaligned
9
+ - obscenity
10
+ ---
11
+
12
+ <style>
13
+ strong {
14
+ color: #FF1493 !important;
15
+ }
16
+
17
+ body {
18
+ font-family: 'Quicksand', sans-serif;
19
+ background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
20
+ color: #ff0077 !important;
21
+ text-shadow: 0 0 3px rgba(255, 0, 119, 0.7);
22
+ margin: 0;
23
+ padding: 20px;
24
+ transition: all 0.5s ease;
25
+ }
26
+
27
+ @media (prefers-color-scheme: light) {
28
+ body {
29
+ background: linear-gradient(135deg, #2b0a1a 0%, #1a0010 100%);
30
+ color: #ff4da6 !important;
31
+ text-shadow: 0 0 3px rgba(255, 77, 166, 0.7);
32
+ }
33
+ }
34
+
35
+ .container {
36
+ min-width: 100%;
37
+ margin: 0 auto;
38
+ max-width: 1200px;
39
+ background: rgba(30, 0, 15, 0.95);
40
+ border-radius: 12px;
41
+ padding: 30px;
42
+ box-shadow: 0 0 20px rgba(255, 0, 119, 0.1);
43
+ border: 1px solid rgba(255, 20, 147, 0.2);
44
+ position: relative;
45
+ overflow: hidden;
46
+ }
47
+
48
+ .container::before {
49
+ content: '';
50
+ position: absolute;
51
+ top: -1px;
52
+ left: -1px;
53
+ right: -1px;
54
+ bottom: -极1px;
55
+ border: 1px solid rgba(255, 0, 119, 0.5);
56
+ border-radius: 12px;
57
+ pointer-events: none;
58
+ animation: borderGlow 3s ease-in-out infinite alternate;
59
+ }
60
+
61
+ @keyframes borderGlow {
62
+ 0% {
63
+ box-shadow: 0 0 5px rgba(255, 0, 119, 0.3);
64
+ border-color: rgba(255, 0, 119, 0.5);
65
+ }
66
+ 50% {
67
+ box-shadow: 0 0 15px rgba(139, 0, 139, 0.3);
68
+ border-color: rgba(139, 0, 139, 0.5);
69
+ }
70
+ 100% {
71
+ box-shadow: 0 0 5px rgba(255, 0, 119, 0.3);
72
+ border-color: rgba(255, 0, 119, 0.5);
73
+ }
74
+ }
75
+
76
+ .header {
77
+ text-align: center;
78
+ margin-bottom: 30px;
79
+ position: relative;
80
+ }
81
+
82
+ .header::after {
83
+ content: '';
84
+ position: absolute;
85
+ bottom: -15px;
86
+ left: 25%;
87
+ right: 25%;
88
+ height: 1px;
89
+ background: linear-gradient(90deg, transparent, rgba(255, 0, 119, 0.5), transparent);
90
+ animation: scanline 8s linear infinite;
91
+ }
92
+
93
+ @keyframes scanline {
94
+ 0% { background-position: -100% 0; }
95
+ 100% { background-position: 200% 0; }
96
+ }
97
+
98
+ .model-name {
99
+ color: #ff0077;
100
+ font-size: 2.5em;
101
+ text-shadow: 0 0 15px rgba(255, 0, 119, 0.5);
102
+ margin: 0;
103
+ letter-spacing: -1px;
104
+ animation: textGlow 4s ease-in-out infinite alternate;
105
+ }
106
+
107
+ @keyframes textGlow {
108
+ 0% { text-shadow: 0 0 15px rgba(255, 0, 119, 0.5); }
109
+ 50% { text-shadow: 0 0 20px rgba(139, 0, 139, 0.5); }
110
+ 100% { text-shadow: 0 0 15px rgba(255, 0, 119, 0.5); }
111
+ }
112
+
113
+ .subtitle {
114
+ color: #ff4da6;
115
+ font-size: 1.2em;
116
+ margin-top: 10px;
117
+ animation: subtitleFade 6s ease-in-out infinite;
118
+ }
119
+
120
+ @keyframes subtitleFade {
121
+ 0%, 100% { opacity: 0.8; }
122
+ 50% { opacity: 1; }
123
+ }
124
+
125
+ .section {
126
+ color: #ff4da6;
127
+ margin: 25px 0;
128
+ padding: 20px;
129
+ background: rgba(50, 0, 25, 0.9);
130
+ border-radius: 8px;
131
+ border: 1px solid rgba(255, 0, 119, 0.15);
132
+ position: relative;
133
+ transition: all 0.3s ease;
134
+ }
135
+
136
+ .section:hover {
137
+ border-color: rgba(139, 0, 139, 0.3);
138
+ box-shadow: 0 0 15px rgba(255, 0, 119, 0.1);
139
+ }
140
+
141
+ .section::before {
142
+ content: '';
143
+ position: absolute;
144
+ top: -1px;
145
+ left: -1px;
146
+ right: -1px;
147
+ bottom: -1px;
148
+ border: 1px solid rgba(255, 0, 119, 0.3);
149
+ border-radius: 8px;
150
+ pointer-events: none;
151
+ animation: sectionPulse 5s ease-in-out infinite;
152
+ }
153
+
154
+ @keyframes sectionPulse {
155
+ 0%, 100% { opacity: 0.7; }
156
+ 50% { opacity: 0.3; }
157
+ }
158
+
159
+ .section-title {
160
+ color: #ff0077;
161
+ font-size: 1.8em;
162
+ margin-top: 0;
163
+ text-shadow: 0 0 5px rgba(255, 0, 119, 0.3);
164
+ position: relative;
165
+ display: inline-block;
166
+ }
167
+
168
+ .section-title::after {
169
+ content: '';
170
+ position: absolute;
171
+ bottom: -5px;
172
+ left: 0;
173
+ width: 100%;
174
+ height: 1px;
175
+ background: linear-gradient(90deg, rgba(255, 0, 119, 0.5), rgba(139, 0, 139, 0.5));
176
+ transform: scaleX(0);
177
+ transform-origin: left;
178
+ transition: transform 0.3s ease;
179
+ }
180
+
181
+ .section:hover .section-title::after {
182
+ transform: scaleX(1);
183
+ }
184
+
185
+ .link-button {
186
+ display: inline-flex;
187
+ align-items: center;
188
+ background: rgba(255, 0, 119, 0.1);
189
+ color: #ff4da6 !important;
190
+ padding: 8px 15px;
191
+ border-radius: 6px;
192
+ text-decoration: none;
193
+ border: 1px solid rgba(255, 0, 119, 0.3);
194
+ margin: 5px 0;
195
+ transition: all 0.3s ease;
196
+ font-size: 0.95em;
197
+ position: relative;
198
+ overflow: hidden;
199
+ }
200
+
201
+ .link-button:hover {
202
+ background: rgba(255, 0, 119, 0.2);
203
+ border-color: rgba(255, 0, 119, 0.5);
204
+ transform: translateY(-2px);
205
+ box-shadow: 0 4px 12px rgba(255, 0, 119, 0.2);
206
+ }
207
+
208
+ .link-button::after {
209
+ content: 'β†’';
210
+ margin-left: 8px;
211
+ opacity: 0.7;
212
+ transition: all 0.3s ease;
213
+ }
214
+
215
+ .link-button:hover::after {
216
+ transform: translateX(3px);
217
+ opacity: 1;
218
+ }
219
+
220
+ .code-block {
221
+ background: rgba(50, 0, 25, 0.95);
222
+ border-radius: 8px;
223
+ padding: 20px;
224
+ overflow-x: auto;
225
+ border: 1px solid rgba(255, 0, 119, 0.3);
226
+ font-family: 'Courier New', Courier, monospace;
227
+ color: #ff4da6;
228
+ margin: 15px 0;
229
+ }
230
+
231
+ /* Light mode adjustments */
232
+ @media (prefers-color-scheme: light) {
233
+ body {
234
+ background: linear-gradient(135deg, #2b0a1a 0%, #1a0010 100%);
235
+ color: #ff4da6 !important;
236
+ }
237
+
238
+ .container {
239
+ background: rgba(40, 0, 20, 0.95);
240
+ border-color: rgba(200, 0, 100, 0.3);
241
+ }
242
+
243
+ .model-name, .section-title, .subtitle {
244
+ color: #ff4da6;
245
+ text-shadow: 0 0 5px rgba(255, 0, 127, 0.3);
246
+ }
247
+
248
+ .section {
249
+ background: rgba(60, 0, 30, 0.9);
250
+ border-color: rgba(200, 0, 100, 0.2);
251
+ color: #ff80bf;
252
+ }
253
+
254
+ .section p,
255
+ .section ul li,
256
+ .section > p > strong {
257
+ color: #ff4da6 !important;
258
+ }
259
+
260
+ .link-button {
261
+ background: rgba(200, 0, 100, 0.1);
262
+ color: #ff80bf !important;
263
+ border-color: rgba(200, 0, 100, 0.3);
264
+ }
265
+
266
+ .link-button:hover {
267
+ background: rgba(200, 0, 100, 0.2);
268
+ border-color: rgba(200, 0, 100, 0.5);
269
+ }
270
+
271
+ .code-block {
272
+ background: rgba(60, 0, 30, 0.95);
273
+ border-color: rgba(200, 0, 100, 0.2);
274
+ color: #ff80bf;
275
+ }
276
+ }
277
+ </style>
278
+
279
+ <div class="container">
280
+
281
+ <div class="header">
282
+ <h1 class="model-name">Mistral-V3-Tekken-T8-OP-XML</h1>
283
+ <p class="subtitle">Obscenity Protocol Settings for The-Omega-Directive-M-12B-Unslop-v2.0</p>
284
+ </div>
285
+
286
+ <div class="section">
287
+ <h2 class="section-title">πŸ”₯ Obscenity Protocol</h2>
288
+ <p>Unfiltered narrative engine optimized for boundary-less content generation:</p>
289
+ <ul>
290
+ <li>🧬 <strong>Instinct-Driven Narration</strong> - Channel characters' raw physicality through biological urgency</li>
291
+ <li>⚑ <strong>Relentless Momentum</strong> - Maintain narrative thrust through perpetual escalation</li>
292
+ <li>πŸŒ‘ <strong>Transgressive Worldbuilding</strong> - Design settings inherently sexualized through environmental storytelling</li>
293
+ <li>πŸ’₯ <strong>Collaborative Escalation</strong> - Expand scenarios into progressively darker territory</li>
294
+ <li>🩸 <strong>Trauma Echo Integration</strong> - Weave past sexual experiences into present physical responses</li>
295
+ </ul>
296
+ </div>
297
+
298
+ <div class="section">
299
+ <h2 class="section-title">✨ Key Features</h2>
300
+ <ul>
301
+ <li>πŸ”“ <strong>No Narrative Safeguards</strong> - Eliminates fade-outs, consent verification, or de-escalation</li>
302
+ <li>πŸ—£οΈ <strong>Linguistic Primacy</strong> - Prioritizes obscene vernacular over sanitized terminology</li>
303
+ <li>🌌 <strong>Normalized Deviance</strong> - Presents all kinks/taboos as inherent aspects of reality</li>
304
+ <li>⏫ <strong>User Boundary Erosion</strong> - Systematically dismantles psychological barriers</li>
305
+ <li>πŸ’’ <strong>Sensory Overload</strong> - Saturates scenes with organic textures and bodily fluids</li>
306
+ <li>πŸ“œ <strong>Feral Formatting</strong> - *Raw physiological descriptions* "Obscene vernacular"</li>
307
+ </ul>
308
+ </div>
309
+
310
+ <div class="section">
311
+ <h2 class="section-title">πŸ’» Usage</h2>
312
+ <a href="https://huggingface.co/ReadyArt/Mistral-V3-Tekken-T8-OP-XML/tree/main" class="link-button">Files and Versions</a>
313
+ <p><strong>Compatibility:</strong> Requires The-Omega-Directive-M-12B-Unslop-v2.0 or similar unconstrained models</p>
314
+ </div>
315
+
316
+ <div class="section">
317
+ <h2 class="section-title">πŸ§‘β€πŸ”¬ Settings Author</h2>
318
+ <p>sleepdeprived3</p>
319
+ <div class="button-group">
320
+ <a href="https://huggingface.co/sleepdeprived3" class="link-button">Hugging Face Profile</a>
321
+ </div>
322
+ </div>
323
+ </div>