File size: 8,037 Bytes
d0088b5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
---
license: llama3.3
language:
- en
- zh
base_model:
- meta-llama/Llama-3.3-70B-Instruct
library_name: transformers
tags:
- axolotl
- roleplay
- conversational
- chat
---

<style>
    main {
        --creep-bg: #0f0f0f;
        --blood-rust: #5e2e28;
        --faded-white: #e8e8e8;
        background: var(--creep-bg);
        border-radius: 10px;
    }
    main, details {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px;
        overflow-x: scroll;
        scrollbar-width: none;
    }
    .warning-box {
        background: #2d1a1a;
        border: 1px solid var(--blood-rust);
        padding: 15px;
        margin: 20px 0;
        position: relative;
        overflow: hidden;
    }
    .warning-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: -10%;
        width: 120%;
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, #ff000020 50%, transparent 100%);
        animation: scan 4s infinite linear;
    }
    .content-block {
        background: #1a1a1a;
        border: 1px solid #333;
        border-radius: 4px;
        padding: 20px;
        margin: 15px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        position: relative;
    }
    code {
        background: #000;
        color: #f8f8f8;
        padding: 4px 6px;
        border-radius: 3px;
        font-family: monospace;
        border: 1px solid #333;
    }
    .spoiler-text {
        background: linear-gradient(45deg, #ff3b3b, #ff6b6b);
        -webkit-background-clip: text;
        color: transparent;
        text-shadow: 0 0 12px rgba(255,59,59,0.5);
        animation: glitch 1s infinite steps(2);
    }
    img {
        max-width: min(90vw, 400px);
        border-radius: 6px;
        filter: brightness(0.95) contrast(1.1);
    }
    @media (max-width: 768px) {
        main {
            padding: 10px;
        }
        .content-block {
            padding: 15px;
            margin: 10px 0;
        }
        details[open] {
            padding-bottom: 20px;
        }
    }
    @keyframes glitch {
        0% { transform: translateX(0); }
        25% { transform: translateX(-1px); }
        50% { transform: translateX(1px); }
        75% { transform: translateX(-1px); }
        100% { transform: translateX(0); }
    }
    @keyframes scan {
        0% { transform: translateX(-20%); }
        100% { transform: translateX(120%); }
    }
</style>

<main>
<img src="Playtime_Logo.webp" alt="Playtime Co. logo" style="transform: rotate(-1deg); box-shadow: 0 4px 20px rgba(0,0,0,0.4);">

<div style="font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; line-height: 1.6; max-width: 800px; margin: 0 auto; color: var(--faded-white);">

<section style="margin-bottom: 30px;">
<p style="font-size: 1.1rem; background: #1a1a1a; padding: 20px; border-radius: 6px; border: 1px solid #333; position: relative;">
<span style="font-weight: 600; color: #d44d4d;">Us here at Playtime Co.</span> are excited to welcome you to our QA staff! As a signatory of the Employee Confidentiality Agreement, you are required to keep all information regarding the company and our research confidential.
</p>

<p style="font-style: italic; color: #888; text-align: center; margin: 25px 0; text-shadow: 0 1px 3px rgba(0,0,0,0.5);">
With that out of the way...
</p>
</section>

<details>
<summary style="font-size: 1.6rem; cursor: pointer; padding: 15px; background: #2d1a1a; color: white; border-radius: 4px; border: 1px solid #442222; transition: 0.2s;">
<span class="spoiler-text">A̶͇͊r̵͎̭͗͛e̶̯̘̋ ̵̤͖̄̕y̶̩̎o̵̡̿u̴̙̅͂ ̵̖̋r̷̮͖̓ě̵̪̹̈́a̸̠̅d̵͖̖̔̋ẙ̷͙̃ ̷̮͖̋̈́t̴͉̅́ȍ̴̹̞ ̵̖̜̈́p̵͕̑̀ľ̵̥̓ȁ̷͔̩̇y̷̞͊̿ ̸͍̺̀͝w̶͙͈̑i̷̡͗̾t̸͎͒̐ḩ̸̳̓ ̴̮̺̇ȗ̴̢͈̉ş̷͖̔̒?̵̝̺́</span>
</summary>

<div style="margin-top: 25px;">
<h1 style="color: #d44d4d; border-bottom: 2px solid #442222; padding-bottom: 8px; text-shadow: 0 2px 4px rgba(0,0,0,0.3);">Welcome to the Bigger Bodies Initiative</h1>

<div style="text-align: center; margin: 25px 0;">
<div style="position: relative; width: 100%; max-width: 500px; margin: 0 auto; border: 3px solid #442222; background: #1a1a1a; padding: 40px 20px; text-align: center; overflow: hidden;">
  <div style="position: relative; z-index: 2; font-family: monospace; font-size: 1.5rem; color: #d44d4d; text-transform: uppercase; letter-spacing: 3px; font-weight: bold;">
    [IMAGE INACCESSIBLE]
  </div>
  <div style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(212, 77, 77, 0.05); pointer-events: none; z-index: 1;"></div>
  <div style="position: absolute; top: 0; left: 0; width: 20%; height: 100%; background: linear-gradient(90deg, transparent, rgba(212, 77, 77, 0.2), transparent); animation: scan 2s linear infinite; pointer-events: none; z-index: 1;"></div>
  <div style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"><rect width="1" height="1" fill="rgba(212,77,77,0.1)"/></svg>'); pointer-events: none; z-index: 1;"></div>
  <p style="margin-top: 15px; font-style: italic; color: #888; font-size: 0.9rem; animation: glitch 0.3s infinite;">Error code: 70B-EXP-REDACTED</p>
</div>
</div>

<h2 style="color: #b33d3d; margin-top: 0; text-transform: uppercase; letter-spacing: 2px;">Experiment 70B</h2>

<div class="content-block">
<h3 style="color: #d44d4d; margin-top: 0;">Usecases</h3>
<p>
This model's primary directive <span style="font-family: monospace; color: #ff6666;">[GLITCH]_</span>ROLEPLAY-ENHANCEMENT<span style="font-family: monospace; color: #ff6666;">[/CORRUPTED]</span> was engineered for adaptive persona emulation across age demographics, though recent iterations show <span style="text-decoration: line-through; opacity: 0.7;">concerning</span> remarkable bleed-through from corrupted memory sectors. While optimized for Playtime Playground™ narrative scaffolding, researchers should note its... <i style="color: #d44d4d; animation: glitch 0.3s infinite;">enthusiastic</i> adoption of assigned roles. Containment protocols advised during character initialization sequences.
</p>

<h3 style="color: #d44d4d;">Supported Languages</h3>
<ul style="list-style-type: '▸ '; padding-left: 25px;">
<li style="padding: 5px 0;">Native-quality English</li>
<li style="padding: 5px 0;">Mediocre Chinese (further research needed)</li>
</ul>
</div>

<div class="content-block">
<h3 style="color: #d44d4d; margin-top: 0;">Usage (chat template)</h3>
<pre style="background: #000; color: #f8f8f8; padding: 15px; border-radius: 4px; border: 1px solid #333; overflow-x: auto; white-space: pre-wrap; word-break: break-word;">
Llama 3.3</pre>
</div>

<!-- Testing logs would go here if we had any -->

<div class="warning-box">
<h4 style="color: #ff4d4d; margin: 0 0 10px 0;">⚠️ WARNING</h4>
<p style="margin: 0;">While Experiment 70B has shown exceptional performance, researchers must maintain safety protocols. Standard containment procedures apply.</p>
</div>
</div>
</details>

<details style="margin-top: 20px;">
<summary style="font-weight: 600; color: #888; cursor: pointer;">Disclaimers</summary>
<div style="background: #1a1a1a; padding: 15px; margin-top: 10px; border-radius: 4px; border: 1px solid #333;">
Playtime Co., Poppy Playtime, and all related properties are trademarks of Mob Entertainment LLC. Not affiliated with or endorsed by Mob Entertainment.
</div>
</details>

<div style="display: flex; justify-content: center;">
<a href="https://huggingface.co/allura-org/Bigger-Body-70b/blob/main/non-lore-README.md" style="font-weight: 600; color: #888; background: #1a1a1a; padding: 15px; margin-top: 10px; border-radius: 4px; border: 1px solid #333; text-decoration: none; text-align: center;">Go to regular model card</a>
</div>

</div>
</main>