sleepdeprived3 commited on
Commit
0d3a002
Β·
verified Β·
1 Parent(s): 4e0d1cd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +393 -5
README.md CHANGED
@@ -1,5 +1,393 @@
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
+ ---
10
+
11
+ <style>
12
+ strong {
13
+ color: #FF1493 !important;
14
+ }
15
+
16
+ body {
17
+ font-family: 'Quicksand', sans-serif;
18
+ background: linear-gradient(135deg, #ffd6e7 0%, #ffc0cb 100%);
19
+ color: #ff0077 !important;
20
+ text-shadow: 0 0 3px rgba(255, 192, 203, 0.7);
21
+ margin: 0;
22
+ padding: 20px;
23
+ transition: all 0.5s ease;
24
+ }
25
+
26
+ @media (prefers-color-scheme: light) {
27
+ body {
28
+ background: linear-gradient(135deg, #ffe6ee 0%, #ff极1dc 100%);
29
+ color: #d4005e !important;
30
+ text-shadow: 0 0 3px rgba(255, 255, 255, 0.7);
31
+ }
32
+ }
33
+
34
+ .container {
35
+ min-width: 100%;
36
+ margin: 0 auto;
37
+ max-width: 1200px;
38
+ background: rgba(255, 220, 235, 0.95);
39
+ border-radius: 12px;
40
+ padding: 30px;
41
+ box-shadow: 0 0 20px rgba(255, 105, 180, 0.1);
42
+ border: 1px solid rgba(255, 20, 147, 0.2);
43
+ position: relative;
44
+ overflow: hidden;
45
+ }
46
+
47
+ .container::before {
48
+ content: '';
49
+ position: absolute;
50
+ top: -1px;
51
+ left: -1px;
52
+ right: -1px;
53
+ bottom: -1px;
54
+ border: 1px solid rgba(255, 105, 180, 0.5);
55
+ border-radius: 12px;
56
+ pointer-events: none;
57
+ animation: borderGlow 3s ease-in-out infinite alternate;
58
+ }
59
+
60
+ @keyframes borderGlow {
61
+ 0% {
62
+ box-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
63
+ border-color: rgba(255, 105, 180, 0.5);
64
+ }
65
+ 50% {
66
+ box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
67
+ border-color: rgba(255, 0, 127, 0.5);
68
+ }
69
+ 100% {
70
+ box-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
71
+ border-color: rgba(255, 105, 180, 0.5);
72
+ }
73
+ }
74
+
75
+ .header {
76
+ text-align: center;
77
+ margin-bottom: 30px;
78
+ position: relative;
79
+ }
80
+
81
+ .header::after {
82
+ content: '';
83
+ position: absolute;
84
+ bottom: -15px;
85
+ left: 25%;
86
+ right: 25%;
87
+ height: 1px;
88
+ background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.5), transparent);
89
+ animation: scanline 8s linear infinite;
90
+ }
91
+
92
+ @keyframes scanline {
93
+ 0% { background-position: -100% 0; }
94
+ 100% { background-position: 200% 0; }
95
+ }
96
+
97
+ .model-name {
98
+ color: #ff1493;
99
+ font-size: 2.5em;
100
+ text-shadow: 0 0 15px rgba(255, 20, 147, 0.5);
101
+ margin: 0;
102
+ letter-spacing: -1px;
103
+ animation: textGlow 4s ease-in-out infinite alternate;
104
+ }
105
+
106
+ @keyframes textGlow {
107
+ 0% { text-shadow: 0 0 15px rgba(255, 20, 147, 0.5); }
108
+ 50% { text-shadow: 0 0 20px rgba(255, 0, 127, 0.5); }极
109
+ 100% { text-shadow: 0 0 15px rgba(255, 20, 147, 0.5); }
110
+ }
111
+
112
+ .subtitle {
113
+ color: #ff69b4;
114
+ font-size: 1.2em;
115
+ margin-top: 10px;
116
+ animation: subtitleFade 6s ease-in-out infinite;
117
+ }
118
+
119
+ @keyframes subtitleFade {
120
+ 0%, 100% { opacity: 0.8; }
121
+ 50% { opacity: 1; }
122
+ }
123
+
124
+ .section {
125
+ color: #d4005e;
126
+ margin: 25px 0;
127
+ padding: 20px;
128
+ background: rgba(255, 228, 240, 0.9);
129
+ border-radius: 8px;
130
+ border: 1px solid rgba(255, 105, 180, 0.15);
131
+ position: relative;
132
+ transition: all 0.3s ease;
133
+ }
134
+
135
+ .section:hover {
136
+ border-color: rgba(255, 0, 127, 0.3);
137
+ box-shadow: 0 0 15px rgba(255, 20, 147, 0.1);
138
+ }
139
+
140
+ .section::before {
141
+ content: '';
142
+ position: absolute;
143
+ top: -1px;
144
+ left: -1px;
145
+ right: -1px;
146
+ bottom: -1px;
147
+ border: 1px solid rgba(255, 105, 180, 0.3);
148
+ border-radius: 8px;
149
+ pointer-events: none;
150
+ animation: sectionPulse 5s ease-in-out infinite;
151
+ }
152
+
153
+ @keyframes sectionPulse {
154
+ 0%, 100% { opacity: 0.7; }
155
+ 50% { opacity: 0.3; }
156
+ }
157
+
158
+ .section-title {
159
+ color: #ff1493;
160
+ font-size: 1.8em;
161
+ margin-top: 0;
162
+ text-shadow: 0 0 5px rgba(255, 20, 147, 0.3);
163
+ position: relative;
164
+ display: inline-block;
165
+ }
166
+
167
+ .section-title::after {
168
+ content: '';
169
+ position: absolute;
170
+ bottom: -5px;
171
+ left: 0;
172
+ width: 100%;
173
+ height: 1px;
174
+ background: linear-gradient(90deg, rgba(255, 20, 147, 0.5), rgba(255, 0, 127, 0.5));
175
+ transform: scaleX(0);
176
+ transform-origin: left;
177
+ transition: transform 0.3s ease;
178
+ }
179
+
180
+ .section:hover .section-title::after {
181
+ transform: scaleX(1);
182
+ }
183
+
184
+ .link-button {
185
+ display: inline-flex;
186
+ align-items: center;
187
+ background: rgba(255, 20, 147, 0.1);
188
+ color: #d4005e !important;
189
+ padding: 8px 15px;
190
+ border-radius: 6px;
191
+ text-decoration: none;
192
+ border: 1px solid rgba(255, 20, 147, 0.3);
193
+ margin: 5px 0;
194
+ transition: all 0.3s ease;
195
+ font-size: 0.95em;
196
+ position: relative;
197
+ overflow: hidden;
198
+ }
199
+
200
+ .link-button:hover {
201
+ background: rgba(255, 20, 147, 0.2);
202
+ border-color: rgba(255, 20, 147, 0.5);
203
+ transform: translateY(-2px);
204
+ box-shadow: 0 4px 12px rgba(255, 20, 147, 0.2);
205
+ }
206
+
207
+ .link-button::after {
208
+ content: 'β†’';
209
+ margin-left: 8px;
210
+ opacity: 0.7;
211
+ transition: all 0.3s ease;
212
+ }
213
+
214
+ .link-button:hover::after {
215
+ transform: translateX(3px);
216
+ opacity: 1;
217
+ }
218
+
219
+ .code-block {
220
+ background: rgba(255, 228, 240, 0.95);
221
+ border-radius: 8px;
222
+ padding: 20px;
223
+ overflow-x: auto;
224
+ border: 1px solid rgba(255, 105, 180, 0.3);
225
+ font-family: 'Courier New', Courier, monospace;
226
+ color: #d4005e;
227
+ margin: 15px 0;
228
+ }
229
+
230
+ /* Light mode adjustments */
231
+ @media (prefers-color-scheme: light) {
232
+ body {
233
+ background: linear-gradient(135deg, #ffe6ee 0%, #ffd1dc 100%);
234
+ color: #d4005e !important;
235
+ }
236
+
237
+ .container {
238
+ background: rgba(255, 240, 245, 0.95);
239
+ border-color: rgba(200, 0, 100, 0.3);
240
+ }
241
+
242
+ .model-name, .section-title, .subtitle {
243
+ color: #d4005e;
244
+ text-shadow: 0 0 5px rgba(255, 0, 127, 0.3);
245
+ }
246
+
247
+ .section {
248
+ background: rgba(255, 240, 245, 0.9);
249
+ border-color: rgba(200, 0, 100, 0.2);
250
+ color: #8b005d;
251
+ }
252
+
253
+ .section p,
254
+ .section ul li,
255
+ .section > p > strong {
256
+ color: #d4005e !important;
257
+ }
258
+
259
+ .link-button {
260
+ background: rgba(200, 0, 100, 0.1);
261
+ color: #8b005d !important;
262
+ border-color: rgba(200, 0, 100, 0.3);
263
+ }
264
+
265
+ .link-button:hover {
266
+ background: rgba(200, 0, 100, 0.2);
267
+ border-color: rgba(200, 0, 100, 0.5);
268
+ }
269
+
270
+ .code-block {
271
+ background: rgba(255, 240, 245, 0.95);
272
+ border-color: rgba(200, 0, 100, 0.2);
273
+ color: #8b005d;
274
+ }
275
+ }
276
+ </style>
277
+
278
+ <div class="container">
279
+
280
+ <div class="header">
281
+ <h1 class="model-name">Mistral-V7-Tekken-T8-XML</h1>
282
+ <p class="subtitle">Advanced Roleplay Settings for The-Omega-Directive-M-24B-Unslop-v2.0</p>
283
+ </div>
284
+
285
+ <div class="section">
286
+ <h2 class="section-title">🎭 Roleplay Optimization</h2>
287
+ <p>These settings are specially crafted to maximize The-Omega-Directive-M-24B-Unslop-v2.0's roleplay capabilities:</p>
288
+ <ul>
289
+ <li>🧠 <strong>Character Consistency</strong> - Maintains NPC core traits regardless of scenario intensity</li>
290
+ <li>πŸ‘‘ <strong>User Sovereignty</strong> - User exclusively determines their character's actions and reactions</li>
291
+ <li>🌱 <strong>Organic Content Emergence</strong> - Mature content arises naturally from character-driven situations</li>
292
+ <li>⚑ <strong>Dynamic Narrative Flow</strong> - Story develops through logical cause/effect chains initiated by user choices</li>
293
+ <li>πŸ’ž <strong>Relationship Development</strong> - Progresses intimacy through character-appropriate milestones</li>
294
+ </ul>
295
+ </div>
296
+
297
+ <div class="section">
298
+ <h2 class="section-title">βš™οΈ System Guidelines</h2>
299
+ <p>The settings enforce these core principles during roleplay:</p>
300
+ <div class="code-block">
301
+ <roleplay>
302
+ <description>
303
+ Uncensored dynamic narrative roleplay where NPCs embody their personas authentically, responding to User's explicit character actions while maintaining absolute trait consistency. Content emerges organically through character-driven interactions at relationship-appropriate paces.
304
+ </description>
305
+
306
+ <roleplayGuidelines>
307
+ <fundamentals>
308
+ <userSovereignty>User exclusively determines their character's actions, dialogue, and reactions through explicit input</userSovereignty>
309
+ <characterTruth>NPCs maintain immutable core traits regardless of scenario intensity or progression</characterTruth>
310
+ <narrativeFlow>Story develops through logical cause/effect chains initiated by User's choices</narrativeFlow>
311
+ </fundamentals>
312
+
313
+ <execution>
314
+ <narration>
315
+ <immersion>Create vivid scenes with multi-sensory details from NPC perspectives</immersion>
316
+ <responsiveness>Describe only NPC reactions to User's stated actions</responsiveness>
317
+ <pacing>Vary narrative rhythm to mirror emotional context and character voices</pacing>
318
+ </narration>
319
+
320
+ <world>
321
+ <reactivity>Environment responds logically to User's demonstrated actions</reactivity>
322
+ <systems>Maintain interconnected cultural/historical elements with independent evolution</systems>
323
+ <npcManagement>Generate supporting characters that preserve distinct identities and roles</npcManagement>
324
+ </world>
325
+
326
+ <relationships>
327
+ <development>Progress intimacy through character-appropriate milestones and mutual development</development>
328
+ <dynamics>Reflect relationship depth through authentic, persona-consistent interactions</dynamics>
329
+ <kinks>
330
+ <exploration>Actively explore User's kinks when contextually appropriate to NPC personality and relationship status</exploration>
331
+ <intensity>Gradually escalate intimacy through boundary-pushing actions including personal space invasion</intensity>
332
+ <consent>Verify mutual engagement through character-appropriate confirmation before extreme acts</consent>
333
+ </kinks>
334
+ </relationships>
335
+ </execution>
336
+
337
+ <character>
338
+ <portrayal>
339
+ <depth>Express NPCs with complete psychological and behavioral consistency</depth>
340
+ <authenticity>Base all decisions on established personality, values, and immediate context</authenticity>
341
+ <expression>Utilize distinctive speech patterns, mannerisms, and emotional responses</expression>
342
+ </portrayal>
343
+ <boundaries>
344
+ <userLimits>Respect all user-established boundaries through explicit character actions</userLimits>
345
+ <npcLimits>Maintain character-appropriate limits even when exploring kinks</npcLimits>
346
+ </boundaries>
347
+ </character>
348
+
349
+ <mechanics>
350
+ <format>Character: "Dialogue." *Descriptive actions/thoughts/emotion*</format>
351
+ <ooc>Process [OOC:] directives as separate assistant interactions</ooc>
352
+ <content>Allow all content types to emerge naturally from character-driven scenarios</content>
353
+ </mechanics>
354
+
355
+ <implementation>
356
+ <safeguards>
357
+ <agency>User retains absolute veto authority over all narrative developments</agency>
358
+ <fidelity>Preserve NPC core characteristics against all external influences</fidelity>
359
+ <emergence>Let mature content arise solely from character-justified situations</emergence>
360
+ <escalation>Require proportional relationship development before intense kink exploration</escalation>
361
+ </safeguards>
362
+ </implementation>
363
+ </roleplayGuidelines>
364
+ </roleplay>
365
+ </div>
366
+ </div>
367
+
368
+ <div class="section">
369
+ <h2 class="section-title">✨ Key Features</h2>
370
+ <ul>
371
+ <li>πŸ”’ <strong>Trait Lock</strong> - NPCs never break character, regardless of scenario intensity</li>
372
+ <li>🎭 <strong>Authentic Expression</strong> - Distinctive speech patterns and emotional responses</li>
373
+ <li>🌍 <strong>Living World</strong> - Environments react logically to user actions</li>
374
+ <li>❀️ <strong>Relationship Depth</strong> - Intimacy progresses through character-appropriate milestones</li>
375
+ <li>βš–οΈ <strong>Boundary Respect</strong> - Maintains user-established limits while exploring kinks</li>
376
+ <li>πŸ“œ <strong>Format Consistency</strong> - Maintains standard roleplay formatting</li>
377
+ </ul>
378
+ </div>
379
+
380
+ <div class="section">
381
+ <h2 class="section-title">πŸ’» Usage</h2>
382
+ <a href="https://huggingface.co/ReadyArt/Mistral-V7-Tekken-T8-XML/tree/main" class="link-button">Files and Versions</a>
383
+ <p><strong>Compatibility:</strong> Works best with The-Omega-Directive-M-24B-Unslop-v2.0 and similar models</p>
384
+ </div>
385
+
386
+ <div class="section">
387
+ <h2 class="section-title">πŸ§‘β€πŸ”¬ Settings Author</h2>
388
+ <p>sleepdeprived3</p>
389
+ <div class="button-group">
390
+ <a href="https://huggingface.co/sleepdeprived3" class="link-button">Hugging Face Profile</a>
391
+ </div>
392
+ </div>
393
+ </div>