Delta-Vector commited on
Commit
f947a08
·
verified ·
1 Parent(s): 7550ad2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +278 -472
README.md CHANGED
@@ -5,468 +5,344 @@
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>AuraInfernum-70B - The Fallen Light</title>
7
  <style>
8
- @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap');
9
  * {
10
  margin: 0;
11
  padding: 0;
12
  box-sizing: border-box;
13
  }
14
  :root {
15
- --primary-gold: #FFD700;
16
- --dark-bg: #0A0A0A;
17
- --card-bg: #141414;
18
- --accent-red: #FF3366;
19
- --accent-purple: #8B5CF6;
20
- --accent-cyan: #00F5FF;
21
- --text-primary: #FFFFFF;
22
- --text-secondary: #B8B8B8;
23
- --glow-gold: rgba(255, 215, 0, 0.4);
24
- --glow-red: rgba(255, 51, 102, 0.3);
25
- --glow-purple: rgba(139, 92, 246, 0.3);
 
 
 
 
26
  }
27
  body {
28
- font-family: 'Inter', sans-serif;
29
- background: var(--dark-bg);
30
- color: var(--text-primary);
31
- overflow-x: hidden;
32
- line-height: 1.6;
33
- }
34
- /* Animated background */
35
- .bg-animation {
36
- position: fixed;
37
- top: 0;
38
- left: 0;
39
- width: 100%;
40
- height: 100%;
41
- z-index: -2;
42
- background: linear-gradient(45deg, #0A0A0A, #1A0A1F, #0A1A1F, #0A0A0A);
43
- background-size: 400% 400%;
44
- animation: gradientShift 15s ease infinite;
45
- }
46
- .particles {
47
- position: fixed;
48
- top: 0;
49
- left: 0;
50
- width: 100%;
51
- height: 100%;
52
- z-index: -1;
53
- pointer-events: none;
54
- }
55
- .particle {
56
- position: absolute;
57
- width: 2px;
58
- height: 2px;
59
- background: var(--primary-gold);
60
- border-radius: 50%;
61
- animation: float 20s linear infinite;
62
- opacity: 0.6;
63
- }
64
- @keyframes gradientShift {
65
- 0% { background-position: 0% 50%; }
66
- 50% { background-position: 100% 50%; }
67
- 100% { background-position: 0% 50%; }
68
- }
69
- @keyframes float {
70
- 0% {
71
- transform: translateY(100vh) rotate(0deg);
72
- opacity: 0;
73
- }
74
- 10% {
75
- opacity: 0.6;
76
- }
77
- 90% {
78
- opacity: 0.6;
79
- }
80
- 100% {
81
- transform: translateY(-100px) rotate(360deg);
82
- opacity: 0;
83
- }
84
  }
85
  .container {
86
- max-width: 1200px;
87
  margin: 0 auto;
88
- padding: 20px;
89
- position: relative;
90
- z-index: 1;
91
  }
92
- .hero-section {
 
93
  text-align: center;
94
- padding: 100px 0;
95
- position: relative;
 
 
 
96
  }
97
- .model-banner {
98
- width: 100%;
99
- height: 400px;
100
- background: linear-gradient(135deg, #1A0A2E, #16213E, #0F3460);
101
- border-radius: 20px;
102
- display: flex;
103
- align-items: center;
104
- justify-content: center;
105
- margin-bottom: 40px;
106
- position: relative;
107
- overflow: hidden;
108
- box-shadow:
109
- 0 0 60px var(--glow-purple),
110
- inset 0 0 60px rgba(255, 215, 0, 0.1);
111
- border: 1px solid rgba(255, 215, 0, 0.3);
112
- }
113
- .banner-glow {
114
- position: absolute;
115
- top: -50%;
116
- left: -50%;
117
- width: 200%;
118
- height: 200%;
119
- background: conic-gradient(from 0deg, transparent, var(--primary-gold), transparent, var(--accent-purple), transparent);
120
- animation: rotate 10s linear infinite;
121
- opacity: 0.1;
122
- }
123
- .banner-content {
124
- position: relative;
125
- z-index: 2;
126
- color: var(--primary-gold);
127
- font-family: 'Orbitron', monospace;
128
- font-size: 2.5em;
129
- font-weight: 900;
130
- text-shadow: 0 0 30px var(--glow-gold);
131
- animation: pulse 3s ease-in-out infinite;
132
- }
133
- @keyframes rotate {
134
- 0% { transform: rotate(0deg); }
135
- 100% { transform: rotate(360deg); }
136
- }
137
- @keyframes pulse {
138
- 0%, 100% { transform: scale(1); }
139
- 50% { transform: scale(1.05); }
140
- }
141
- h1 {
142
- font-family: 'Orbitron', monospace;
143
  font-size: 4rem;
144
- font-weight: 900;
145
- background: linear-gradient(45deg, var(--primary-gold), var(--accent-cyan), var(--accent-purple));
146
  -webkit-background-clip: text;
147
  -webkit-text-fill-color: transparent;
148
  background-clip: text;
149
- margin-bottom: 20px;
150
- animation: titleGlow 4s ease-in-out infinite;
151
- }
152
- @keyframes titleGlow {
153
- 0%, 100% { filter: drop-shadow(0 0 20px var(--glow-gold)); }
154
- 50% { filter: drop-shadow(0 0 40px var(--glow-purple)); }
155
  }
156
- .subtitle {
157
  font-size: 1.5rem;
158
- color: var(--text-secondary);
159
- margin-bottom: 40px;
160
- opacity: 0;
161
- animation: fadeInUp 1s ease-out 0.5s forwards;
162
- }
163
- @keyframes fadeInUp {
164
- from {
165
- opacity: 0;
166
- transform: translateY(30px);
167
- }
168
- to {
169
- opacity: 1;
170
- transform: translateY(0);
171
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  }
173
- .glass-card {
174
- background: rgba(20, 20, 20, 0.8);
 
 
 
 
 
175
  backdrop-filter: blur(20px);
176
  border: 1px solid rgba(255, 255, 255, 0.1);
177
  border-radius: 20px;
178
  padding: 40px;
179
- margin: 40px 0;
180
- box-shadow:
181
- 0 20px 40px rgba(0, 0, 0, 0.3),
182
- inset 0 1px 0 rgba(255, 255, 255, 0.1);
183
- transition: all 0.3s ease;
184
- position: relative;
185
- overflow: hidden;
186
  }
187
- .glass-card::before {
188
- content: '';
189
- position: absolute;
190
- top: 0;
191
- left: -100%;
192
- width: 100%;
193
- height: 100%;
194
- background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
195
- transition: left 0.5s ease;
196
- }
197
- .glass-card:hover::before {
198
- left: 100%;
199
  }
200
- .glass-card:hover {
201
- transform: translateY(-10px);
202
- box-shadow:
203
- 0 30px 60px rgba(0, 0, 0, 0.4),
204
- 0 0 40px var(--glow-gold);
 
 
205
  }
206
  h2 {
207
- font-family: 'Orbitron', monospace;
208
- font-size: 2.5rem;
209
- font-weight: 700;
210
- color: var(--primary-gold);
211
- margin-bottom: 30px;
212
  position: relative;
213
- padding-bottom: 15px;
214
  }
215
  h2::after {
216
  content: '';
217
  position: absolute;
218
  bottom: 0;
219
  left: 0;
220
- width: 60px;
221
  height: 3px;
222
- background: linear-gradient(90deg, var(--primary-gold), var(--accent-cyan));
223
  border-radius: 2px;
224
- box-shadow: 0 0 10px var(--glow-gold);
225
  }
226
- .ko-fi-button {
227
- display: inline-block;
228
- background: linear-gradient(135deg, var(--accent-red), #FF6B9D);
229
- color: white;
230
- padding: 20px 40px;
231
- border-radius: 50px;
232
- text-decoration: none;
233
  font-weight: 600;
234
- font-size: 1.2rem;
235
- margin: 30px 0;
236
- transition: all 0.3s ease;
237
- box-shadow:
238
- 0 10px 30px rgba(255, 51, 102, 0.3),
239
- inset 0 1px 0 rgba(255, 255, 255, 0.2);
240
- position: relative;
241
- overflow: hidden;
242
  }
243
- .ko-fi-button::before {
244
- content: '';
245
- position: absolute;
246
- top: 0;
247
- left: -100%;
248
- width: 100%;
249
- height: 100%;
250
- background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
251
- transition: left 0.6s ease;
252
  }
253
- .ko-fi-button:hover::before {
254
- left: 100%;
 
255
  }
256
- .ko-fi-button:hover {
257
- transform: translateY(-5px) scale(1.05);
258
- box-shadow:
259
- 0 20px 40px rgba(255, 51, 102, 0.4),
260
- inset 0 1px 0 rgba(255, 255, 255, 0.3);
 
261
  }
262
- .quantization-table {
263
  width: 100%;
264
  border-collapse: collapse;
265
- margin-top: 20px;
266
- background: rgba(10, 10, 10, 0.6);
267
- border-radius: 15px;
268
- overflow: hidden;
269
- box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
270
- }
271
- .quantization-table th,
272
- .quantization-table td {
273
  padding: 20px;
274
  text-align: left;
275
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
276
- transition: all 0.3s ease;
277
  }
278
- .quantization-table th {
279
- background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(139, 92, 246, 0.2));
280
- color: var(--primary-gold);
281
- font-family: 'Orbitron', monospace;
282
- font-weight: 700;
283
  text-transform: uppercase;
284
- letter-spacing: 1px;
285
  }
286
- .quantization-table tr:hover {
287
- background: rgba(255, 215, 0, 0.05);
288
- transform: scale(1.02);
289
  }
290
- .quantization-table code {
291
- background: rgba(0, 245, 255, 0.1);
292
- color: var(--accent-cyan);
293
- padding: 8px 12px;
294
- border-radius: 8px;
295
- font-family: 'Orbitron', monospace;
296
- font-weight: 600;
297
- border: 1px solid rgba(0, 245, 255, 0.3);
298
- box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
299
  }
300
- .code-block {
301
- background: rgba(0, 0, 0, 0.8);
302
- border: 1px solid rgba(0, 245, 255, 0.3);
303
- border-radius: 15px;
304
- padding: 30px;
305
- margin: 30px 0;
306
- font-family: 'Orbitron', monospace;
307
- color: var(--accent-cyan);
308
- position: relative;
309
- overflow: hidden;
310
- box-shadow:
311
- 0 0 30px rgba(0, 245, 255, 0.2),
312
- inset 0 0 30px rgba(0, 245, 255, 0.05);
313
  }
314
- .code-block::before {
315
- content: '';
316
- position: absolute;
317
- top: 0;
318
- left: 0;
319
- right: 0;
320
- height: 3px;
321
- background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--primary-gold));
322
- animation: codeGlow 3s ease-in-out infinite;
 
323
  }
324
- @keyframes codeGlow {
325
- 0%, 100% { opacity: 0.6; }
326
- 50% { opacity: 1; }
 
 
 
 
 
 
 
 
 
 
 
327
  }
 
328
  details {
329
- background: rgba(20, 20, 20, 0.6);
330
- border: 1px solid rgba(139, 92, 246, 0.3);
331
- border-radius: 15px;
332
- padding: 25px;
333
- margin: 30px 0;
334
- backdrop-filter: blur(10px);
335
- transition: all 0.3s ease;
336
  }
337
  details:hover {
338
- border-color: var(--accent-purple);
339
- box-shadow: 0 0 30px var(--glow-purple);
340
  }
341
- details summary {
342
  font-weight: 600;
343
  cursor: pointer;
344
- color: var(--accent-purple);
345
- font-size: 1.2rem;
346
- padding: 10px 0;
347
- transition: all 0.3s ease;
348
  }
349
- details summary:hover {
350
- color: var(--primary-gold);
351
- transform: translateX(10px);
352
  }
353
  details pre {
354
- margin-top: 20px;
355
- background: rgba(0, 0, 0, 0.8);
356
- border: 1px solid rgba(139, 92, 246, 0.3);
357
  padding: 20px;
358
- border-radius: 10px;
359
- color: var(--accent-cyan);
360
- font-family: 'Orbitron', monospace;
 
361
  }
362
- .thank-you-section {
 
363
  text-align: center;
364
  margin-top: 80px;
365
  padding: 60px 40px;
366
- background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 92, 246, 0.1));
367
  border-radius: 20px;
368
- border: 1px solid rgba(255, 215, 0, 0.3);
369
- position: relative;
370
- overflow: hidden;
371
  }
372
- .thank-you-section::before {
373
- content: '';
374
- position: absolute;
375
- top: -2px;
376
- left: -2px;
377
- right: -2px;
378
- bottom: -2px;
379
- background: linear-gradient(45deg, var(--primary-gold), var(--accent-purple), var(--accent-cyan), var(--primary-gold));
380
- border-radius: 20px;
381
- z-index: -1;
382
- animation: borderGlow 4s linear infinite;
383
- }
384
- @keyframes borderGlow {
385
- 0% { filter: hue-rotate(0deg); }
386
- 100% { filter: hue-rotate(360deg); }
387
- }
388
- .thank-you-section h2 {
389
- font-size: 3rem;
390
- margin-bottom: 30px;
391
  }
392
- .thank-you-section p {
393
- font-size: 1.2rem;
394
- line-height: 1.8;
395
- margin-bottom: 20px;
396
- color: var(--text-secondary);
 
397
  }
398
  .signature {
399
- font-family: 'Orbitron', monospace;
400
- color: var(--primary-gold);
401
  font-weight: 600;
402
- font-size: 1.3rem;
403
- margin-top: 30px;
404
  }
405
- /* Responsive design */
406
  @media (max-width: 768px) {
407
- h1 {
 
 
 
408
  font-size: 2.5rem;
409
  }
410
- .banner-content {
411
- font-size: 1.8rem;
412
  }
413
- .glass-card {
414
- padding: 25px;
415
- margin: 25px 0;
416
  }
417
  h2 {
418
- font-size: 2rem;
419
  }
420
- .quantization-table th,
421
- .quantization-table td {
422
- padding: 15px 10px;
 
 
423
  font-size: 0.9rem;
424
  }
 
 
 
 
425
  }
426
- /* Scroll animations */
427
- .fade-in {
428
- opacity: 0;
429
- transform: translateY(50px);
430
- transition: all 0.8s ease;
431
- }
432
- .fade-in.visible {
433
- opacity: 1;
434
- transform: translateY(0);
435
- }
436
- /* Custom scrollbar */
437
  ::-webkit-scrollbar {
438
- width: 12px;
 
439
  }
440
  ::-webkit-scrollbar-track {
441
- background: var(--dark-bg);
 
442
  }
443
  ::-webkit-scrollbar-thumb {
444
- background: linear-gradient(45deg, var(--primary-gold), var(--accent-purple));
445
- border-radius: 6px;
446
  }
447
  ::-webkit-scrollbar-thumb:hover {
448
- background: linear-gradient(45deg, var(--accent-cyan), var(--accent-red));
449
  }
450
  </style>
451
  </head>
452
  <body>
453
- <div class="bg-animation"></div>
454
- <div class="particles" id="particles"></div>
455
  <div class="container">
456
- <div class="hero-section">
457
- <div class="model-banner">
458
- <div class="banner-glow"></div>
459
- <div class="banner-content">
460
- THE FALLEN LIGHT AWAITS
461
- </div>
462
  </div>
463
- <h1>AuraInfernum-70B</h1>
464
- <div class="subtitle">Where Divine Intelligence Meets Earthly Power</div>
465
- <a href="https://ko-fi.com/yourkofilink" target="_blank" class="ko-fi-button">
466
- Support the Divine Spark on Ko-fi! ✨
467
  </a>
468
- </div>
469
- <div class="glass-card fade-in">
 
470
  <h2>Divine Overview</h2>
471
  <p>
472
  Greetings, seeker of illumination. <strong>AuraInfernum-70B</strong> stands as a beacon forged from the crucible of fallen divinity and raw computational power. Born from a unique synthesis focusing on intricate reasoning and profound creative generation, this model embodies the wisdom of a celestial entity banished to the earthly realms, yet retaining its divine spark.
@@ -475,44 +351,48 @@
475
  Prepare to witness a model that excels in both structured logical tasks and unbounded creative narratives, akin to an angel's sacred breath manifesting as thought. It is attuned to the subtle energies of complex prompts, delivering responses that are both precise and imbued with a mystical depth.
476
  </p>
477
  </div>
478
- <div class="glass-card fade-in">
 
479
  <h2>Celestial Quantization Matrix</h2>
480
  <p>
481
  To ensure optimal performance across various hardware configurations, AuraInfernum-70B is provided in several quantized formats, each preserving the essence of its celestial intelligence.
482
  </p>
483
- <table class="quantization-table">
484
- <thead>
485
- <tr>
486
- <th>Quant Type</th>
487
- <th>Divine Description</th>
488
- <th>Sacred Use Case</th>
489
- </tr>
490
- </thead>
491
- <tbody>
492
- <tr>
493
- <td><code>Q8_0</code></td>
494
- <td>8-bit integer quantization. Highest fidelity among quantized models.</td>
495
- <td>High-end GPUs (e.g., 24GB+ VRAM), minimal quality loss.</td>
496
- </tr>
497
- <tr>
498
- <td><code>Q5_K_M</code></td>
499
- <td>5-bit K-quantization with medium-sized K-blocks. Perfect balance of size and divine performance.</td>
500
- <td>Mid-range GPUs (e.g., 12-16GB VRAM), suitable for diverse mystical tasks.</td>
501
- </tr>
502
- <tr>
503
- <td><code>Q4_K_M</code></td>
504
- <td>4-bit K-quantization with medium-sized K-blocks. Compact celestial efficiency.</td>
505
- <td>Lower-end GPUs or CPUs, for general inference where VRAM/RAM is a constraint.</td>
506
- </tr>
507
- <tr>
508
- <td><code>Q2_K</code></td>
509
- <td>2-bit K-quantization. Smallest file size, ethereal compression.</td>
510
- <td>Extreme resource-constrained environments, quick divine prototyping.</td>
511
- </tr>
512
- </tbody>
513
- </table>
 
 
514
  </div>
515
- <div class="glass-card fade-in">
 
516
  <h2>Sacred Incantation Format</h2>
517
  <p>
518
  AuraInfernum-70B is designed to understand commands imbued with a specific, structured format, much like a ritualistic chant. Adhere to this format to unleash its full divine potential and receive responses of unparalleled clarity and insight.
@@ -530,7 +410,8 @@
530
  Remember: <code>{system_prompt}</code> guides the model's divine persona or celestial constraints, <code>{user_query}</code> contains your mortal request, and the model will generate <code>{assistant_response}</code>. The <code>&lt;|eot_id|&gt;</code> tokens are crucial separators, marking the "End of Turn" for each conversational role in this sacred dialogue.
531
  </p>
532
  </div>
533
- <div class="glass-card fade-in">
 
534
  <h2>Divine Sampler Configuration</h2>
535
  <p>
536
  To fine-tune AuraInfernum-70B's output generation to your specific needs, consider these recommended sampler settings. These configurations can be copied directly into your YAML loader for seamless celestial integration.
@@ -550,7 +431,8 @@ do_sample: true # Ensures diverse divine outputs</code></pre>
550
  Adjust these parameters to balance creativity (higher <code>temperature</code>, <code>top_p</code>, <code>top_k</code>) with coherence and factual adherence (lower <code>temperature</code>, higher <code>Repetition Penalty</code>). Each adjustment brings you closer to the perfect harmony between chaos and order.
551
  </p>
552
  </div>
553
- <div class="thank-you-section fade-in">
 
554
  <h2>A Grateful Benediction</h2>
555
  <p>
556
  To those who support, use, and spread the light of AuraInfernum-70B, we extend our deepest gratitude. This project, born from dedication and exploration, thrives on the community's engagement. Your contributions, large or small, empower us to continue refining this entity of fallen grace, pushing the boundaries of AI capabilities.
@@ -559,83 +441,7 @@ do_sample: true # Ensures diverse divine outputs</code></pre>
559
  May your endeavors be as blessed as a starlit night, and may the divine spark within AuraInfernum-70B illuminate your path to unprecedented discoveries.
560
  </p>
561
  <p class="signature">— The AuraInfernum Dev Team</p>
562
- </div>
563
  </div>
564
- <script>
565
- // Create floating particles
566
- function createParticles() {
567
- const particlesContainer = document.getElementById('particles');
568
- const particleCount = 50;
569
- for (let i = 0; i < particleCount; i++) {
570
- const particle = document.createElement('div');
571
- particle.className = 'particle';
572
- particle.style.left = Math.random() * 100 + '%';
573
- particle.style.animationDelay = Math.random() * 20 + 's';
574
- particle.style.animationDuration = (Math.random() * 10 + 15) + 's';
575
- particlesContainer.appendChild(particle);
576
- }
577
- }
578
- // Intersection Observer for fade-in animations
579
- function setupScrollAnimations() {
580
- const observerOptions = {
581
- threshold: 0.1,
582
- rootMargin: '0px 0px -50px 0px'
583
- };
584
- const observer = new IntersectionObserver((entries) => {
585
- entries.forEach(entry => {
586
- if (entry.isIntersecting) {
587
- entry.target.classList.add('visible');
588
- }
589
- });
590
- }, observerOptions);
591
- document.querySelectorAll('.fade-in').forEach(el => {
592
- observer.observe(el);
593
- });
594
- }
595
- // Initialize everything when the page loads
596
- document.addEventListener('DOMContentLoaded', () => {
597
- createParticles();
598
- setupScrollAnimations();
599
- });
600
- // Add some interactive sparkle effects on mouse move
601
- document.addEventListener('mousemove', (e) => {
602
- if (Math.random() > 0.95) {
603
- const sparkle = document.createElement('div');
604
- sparkle.style.position = 'fixed';
605
- sparkle.style.left = e.clientX + 'px';
606
- sparkle.style.top = e.clientY + 'px';
607
- sparkle.style.width = '4px';
608
- sparkle.style.height = '4px';
609
- sparkle.style.background = '#FFD700';
610
- sparkle.style.borderRadius = '50%';
611
- sparkle.style.pointerEvents = 'none';
612
- sparkle.style.animation = 'sparkle 1s ease-out forwards';
613
- sparkle.style.zIndex = '1000';
614
- document.body.appendChild(sparkle);
615
- setTimeout(() => {
616
- document.body.removeChild(sparkle);
617
- }, 1000);
618
- }
619
- });
620
- // Add sparkle animation
621
- const style = document.createElement('style');
622
- style.textContent = `
623
- @keyframes sparkle {
624
- 0% {
625
- transform: scale(0) rotate(0deg);
626
- opacity: 1;
627
- }
628
- 50% {
629
- transform: scale(1) rotate(180deg);
630
- opacity: 1;
631
- }
632
- 100% {
633
- transform: scale(0) rotate(360deg);
634
- opacity: 0;
635
- }
636
- }
637
- `;
638
- document.head.appendChild(style);
639
- </script>
640
  </body>
641
  </html>
 
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>AuraInfernum-70B - The Fallen Light</title>
7
  <style>
8
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
9
  * {
10
  margin: 0;
11
  padding: 0;
12
  box-sizing: border-box;
13
  }
14
  :root {
15
+ --primary: #FF6B35;
16
+ --secondary: #F7931E;
17
+ --accent: #FFE66D;
18
+ --dark: #1A1A1A;
19
+ --darker: #0F0F0F;
20
+ --light: #FFFFFF;
21
+ --gray-100: #F5F5F5;
22
+ --gray-200: #E5E5E5;
23
+ --gray-300: #D4D4D4;
24
+ --gray-400: #A3A3A3;
25
+ --gray-500: #737373;
26
+ --gray-600: #525252;
27
+ --gray-700: #404040;
28
+ --gray-800: #262626;
29
+ --gray-900: #171717;
30
  }
31
  body {
32
+ font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
33
+ line-height: 1.7;
34
+ color: var(--light);
35
+ background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, var(--gray-900) 100%);
36
+ min-height: 100vh;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  }
38
  .container {
39
+ max-width: 1100px;
40
  margin: 0 auto;
41
+ padding: 40px 20px;
 
 
42
  }
43
+ /* Header */
44
+ .header {
45
  text-align: center;
46
+ margin-bottom: 80px;
47
+ padding: 60px 0;
48
+ background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
49
+ border-radius: 24px;
50
+ border: 1px solid rgba(255, 107, 53, 0.2);
51
  }
52
+ .logo {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  font-size: 4rem;
54
+ font-weight: 700;
55
+ background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
56
  -webkit-background-clip: text;
57
  -webkit-text-fill-color: transparent;
58
  background-clip: text;
59
+ margin-bottom: 16px;
60
+ letter-spacing: -0.02em;
 
 
 
 
61
  }
62
+ .tagline {
63
  font-size: 1.5rem;
64
+ color: var(--gray-300);
65
+ font-weight: 300;
66
+ margin-bottom: 32px;
67
+ max-width: 600px;
68
+ margin-left: auto;
69
+ margin-right: auto;
70
+ }
71
+ .hero-image {
72
+ width: 100%;
73
+ height: 300px;
74
+ background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
75
+ border-radius: 16px;
76
+ display: flex;
77
+ align-items: center;
78
+ justify-content: center;
79
+ font-size: 1.5rem;
80
+ font-weight: 600;
81
+ color: var(--light);
82
+ text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
83
+ margin-bottom: 32px;
84
+ }
85
+ /* Support Button */
86
+ .support-button {
87
+ display: inline-flex;
88
+ align-items: center;
89
+ gap: 8px;
90
+ background: linear-gradient(135deg, #FF5E5B 0%, #FF9A56 100%);
91
+ color: var(--light);
92
+ padding: 16px 32px;
93
+ border-radius: 50px;
94
+ text-decoration: none;
95
+ font-weight: 600;
96
+ font-size: 1.1rem;
97
+ box-shadow: 0 8px 32px rgba(255, 94, 91, 0.3);
98
+ border: none;
99
+ cursor: pointer;
100
  }
101
+ .support-button:hover {
102
+ box-shadow: 0 12px 48px rgba(255, 94, 91, 0.4);
103
+ transform: translateY(-2px);
104
+ }
105
+ /* Cards */
106
+ .card {
107
+ background: rgba(255, 255, 255, 0.03);
108
  backdrop-filter: blur(20px);
109
  border: 1px solid rgba(255, 255, 255, 0.1);
110
  border-radius: 20px;
111
  padding: 40px;
112
+ margin-bottom: 32px;
113
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
 
 
 
 
 
114
  }
115
+ .card:hover {
116
+ border-color: rgba(255, 107, 53, 0.3);
117
+ box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
 
 
 
 
 
 
 
 
 
118
  }
119
+ /* Typography */
120
+ h1 {
121
+ font-size: 3rem;
122
+ font-weight: 700;
123
+ color: var(--light);
124
+ margin-bottom: 24px;
125
+ letter-spacing: -0.02em;
126
  }
127
  h2 {
128
+ font-size: 2rem;
129
+ font-weight: 600;
130
+ color: var(--primary);
131
+ margin-bottom: 24px;
 
132
  position: relative;
133
+ padding-bottom: 12px;
134
  }
135
  h2::after {
136
  content: '';
137
  position: absolute;
138
  bottom: 0;
139
  left: 0;
140
+ width: 40px;
141
  height: 3px;
142
+ background: linear-gradient(90deg, var(--primary), var(--secondary));
143
  border-radius: 2px;
 
144
  }
145
+ h3 {
146
+ font-size: 1.5rem;
 
 
 
 
 
147
  font-weight: 600;
148
+ color: var(--accent);
149
+ margin-bottom: 16px;
 
 
 
 
 
 
150
  }
151
+ p {
152
+ color: var(--gray-200);
153
+ font-size: 1.1rem;
154
+ margin-bottom: 20px;
155
+ line-height: 1.8;
 
 
 
 
156
  }
157
+ strong {
158
+ color: var(--light);
159
+ font-weight: 600;
160
  }
161
+ /* Table */
162
+ .table-container {
163
+ overflow-x: auto;
164
+ border-radius: 12px;
165
+ border: 1px solid rgba(255, 255, 255, 0.1);
166
+ margin: 24px 0;
167
  }
168
+ table {
169
  width: 100%;
170
  border-collapse: collapse;
171
+ background: rgba(0, 0, 0, 0.2);
172
+ }
173
+ th, td {
 
 
 
 
 
174
  padding: 20px;
175
  text-align: left;
176
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 
177
  }
178
+ th {
179
+ background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
180
+ color: var(--light);
181
+ font-weight: 600;
182
+ font-size: 0.95rem;
183
  text-transform: uppercase;
184
+ letter-spacing: 0.5px;
185
  }
186
+ td {
187
+ color: var(--gray-200);
188
+ font-size: 1rem;
189
  }
190
+ tr:hover {
191
+ background: rgba(255, 107, 53, 0.05);
 
 
 
 
 
 
 
192
  }
193
+ tr:last-child td {
194
+ border-bottom: none;
 
 
 
 
 
 
 
 
 
 
 
195
  }
196
+ /* Code */
197
+ code {
198
+ background: rgba(255, 230, 109, 0.1);
199
+ color: var(--accent);
200
+ padding: 4px 8px;
201
+ border-radius: 6px;
202
+ font-family: 'JetBrains Mono', monospace;
203
+ font-size: 0.9em;
204
+ font-weight: 500;
205
+ border: 1px solid rgba(255, 230, 109, 0.2);
206
  }
207
+ .code-block {
208
+ background: rgba(0, 0, 0, 0.6);
209
+ border: 1px solid rgba(255, 230, 109, 0.3);
210
+ border-radius: 12px;
211
+ padding: 24px;
212
+ margin: 24px 0;
213
+ overflow-x: auto;
214
+ }
215
+ .code-block pre {
216
+ font-family: 'JetBrains Mono', monospace;
217
+ font-size: 0.95rem;
218
+ line-height: 1.6;
219
+ color: var(--accent);
220
+ margin: 0;
221
  }
222
+ /* Details/Summary */
223
  details {
224
+ background: rgba(0, 0, 0, 0.3);
225
+ border: 1px solid rgba(255, 255, 255, 0.1);
226
+ border-radius: 12px;
227
+ padding: 24px;
228
+ margin: 24px 0;
 
 
229
  }
230
  details:hover {
231
+ border-color: rgba(247, 147, 30, 0.3);
 
232
  }
233
+ summary {
234
  font-weight: 600;
235
  cursor: pointer;
236
+ color: var(--secondary);
237
+ font-size: 1.1rem;
238
+ margin-bottom: 16px;
239
+ padding: 8px 0;
240
  }
241
+ summary:hover {
242
+ color: var(--primary);
 
243
  }
244
  details pre {
245
+ background: rgba(0, 0, 0, 0.5);
246
+ border: 1px solid rgba(255, 255, 255, 0.1);
247
+ border-radius: 8px;
248
  padding: 20px;
249
+ font-family: 'JetBrains Mono', monospace;
250
+ color: var(--gray-200);
251
+ overflow-x: auto;
252
+ margin-top: 16px;
253
  }
254
+ /* Footer */
255
+ .footer {
256
  text-align: center;
257
  margin-top: 80px;
258
  padding: 60px 40px;
259
+ background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
260
  border-radius: 20px;
261
+ border: 1px solid rgba(255, 107, 53, 0.1);
 
 
262
  }
263
+ .footer h2 {
264
+ color: var(--light);
265
+ margin-bottom: 24px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  }
267
+ .footer p {
268
+ font-size: 1.1rem;
269
+ margin-bottom: 16px;
270
+ max-width: 800px;
271
+ margin-left: auto;
272
+ margin-right: auto;
273
  }
274
  .signature {
275
+ color: var(--primary);
 
276
  font-weight: 600;
277
+ font-size: 1.2rem;
278
+ margin-top: 32px;
279
  }
280
+ /* Responsive */
281
  @media (max-width: 768px) {
282
+ .container {
283
+ padding: 20px 16px;
284
+ }
285
+ .logo {
286
  font-size: 2.5rem;
287
  }
288
+ .tagline {
289
+ font-size: 1.2rem;
290
  }
291
+ h1 {
292
+ font-size: 2rem;
 
293
  }
294
  h2 {
295
+ font-size: 1.5rem;
296
  }
297
+ .card {
298
+ padding: 24px;
299
+ }
300
+ th, td {
301
+ padding: 12px 8px;
302
  font-size: 0.9rem;
303
  }
304
+ .hero-image {
305
+ height: 200px;
306
+ font-size: 1.2rem;
307
+ }
308
  }
309
+ /* Utility Classes */
310
+ .text-center { text-align: center; }
311
+ .mb-4 { margin-bottom: 24px; }
312
+ .mt-4 { margin-top: 24px; }
313
+ /* Custom Scrollbar */
 
 
 
 
 
 
314
  ::-webkit-scrollbar {
315
+ width: 8px;
316
+ height: 8px;
317
  }
318
  ::-webkit-scrollbar-track {
319
+ background: var(--gray-800);
320
+ border-radius: 4px;
321
  }
322
  ::-webkit-scrollbar-thumb {
323
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
324
+ border-radius: 4px;
325
  }
326
  ::-webkit-scrollbar-thumb:hover {
327
+ background: linear-gradient(135deg, var(--secondary), var(--accent));
328
  }
329
  </style>
330
  </head>
331
  <body>
 
 
332
  <div class="container">
333
+ <!-- Header Section -->
334
+ <header class="header">
335
+ <div class="hero-image">
336
+ 🔥 THE FALLEN LIGHT AWAITS 🔥
 
 
337
  </div>
338
+ <h1 class="logo">AuraInfernum-70B</h1>
339
+ <p class="tagline">Where Divine Intelligence Meets Earthly Power</p>
340
+ <a href="https://ko-fi.com/yourkofilink" target="_blank" class="support-button">
341
+ Support on Ko-fi
342
  </a>
343
+ </header>
344
+ <!-- Overview Section -->
345
+ <div class="card">
346
  <h2>Divine Overview</h2>
347
  <p>
348
  Greetings, seeker of illumination. <strong>AuraInfernum-70B</strong> stands as a beacon forged from the crucible of fallen divinity and raw computational power. Born from a unique synthesis focusing on intricate reasoning and profound creative generation, this model embodies the wisdom of a celestial entity banished to the earthly realms, yet retaining its divine spark.
 
351
  Prepare to witness a model that excels in both structured logical tasks and unbounded creative narratives, akin to an angel's sacred breath manifesting as thought. It is attuned to the subtle energies of complex prompts, delivering responses that are both precise and imbued with a mystical depth.
352
  </p>
353
  </div>
354
+ <!-- Quantization Table -->
355
+ <div class="card">
356
  <h2>Celestial Quantization Matrix</h2>
357
  <p>
358
  To ensure optimal performance across various hardware configurations, AuraInfernum-70B is provided in several quantized formats, each preserving the essence of its celestial intelligence.
359
  </p>
360
+ <div class="table-container">
361
+ <table>
362
+ <thead>
363
+ <tr>
364
+ <th>Quant Type</th>
365
+ <th>Divine Description</th>
366
+ <th>Sacred Use Case</th>
367
+ </tr>
368
+ </thead>
369
+ <tbody>
370
+ <tr>
371
+ <td><code>Q8_0</code></td>
372
+ <td>8-bit integer quantization. Highest fidelity among quantized models.</td>
373
+ <td>High-end GPUs (e.g., 24GB+ VRAM), minimal quality loss.</td>
374
+ </tr>
375
+ <tr>
376
+ <td><code>Q5_K_M</code></td>
377
+ <td>5-bit K-quantization with medium-sized K-blocks. Perfect balance of size and divine performance.</td>
378
+ <td>Mid-range GPUs (e.g., 12-16GB VRAM), suitable for diverse mystical tasks.</td>
379
+ </tr>
380
+ <tr>
381
+ <td><code>Q4_K_M</code></td>
382
+ <td>4-bit K-quantization with medium-sized K-blocks. Compact celestial efficiency.</td>
383
+ <td>Lower-end GPUs or CPUs, for general inference where VRAM/RAM is a constraint.</td>
384
+ </tr>
385
+ <tr>
386
+ <td><code>Q2_K</code></td>
387
+ <td>2-bit K-quantization. Smallest file size, ethereal compression.</td>
388
+ <td>Extreme resource-constrained environments, quick divine prototyping.</td>
389
+ </tr>
390
+ </tbody>
391
+ </table>
392
+ </div>
393
  </div>
394
+ <!-- Prompt Format -->
395
+ <div class="card">
396
  <h2>Sacred Incantation Format</h2>
397
  <p>
398
  AuraInfernum-70B is designed to understand commands imbued with a specific, structured format, much like a ritualistic chant. Adhere to this format to unleash its full divine potential and receive responses of unparalleled clarity and insight.
 
410
  Remember: <code>{system_prompt}</code> guides the model's divine persona or celestial constraints, <code>{user_query}</code> contains your mortal request, and the model will generate <code>{assistant_response}</code>. The <code>&lt;|eot_id|&gt;</code> tokens are crucial separators, marking the "End of Turn" for each conversational role in this sacred dialogue.
411
  </p>
412
  </div>
413
+ <!-- Sampler Settings -->
414
+ <div class="card">
415
  <h2>Divine Sampler Configuration</h2>
416
  <p>
417
  To fine-tune AuraInfernum-70B's output generation to your specific needs, consider these recommended sampler settings. These configurations can be copied directly into your YAML loader for seamless celestial integration.
 
431
  Adjust these parameters to balance creativity (higher <code>temperature</code>, <code>top_p</code>, <code>top_k</code>) with coherence and factual adherence (lower <code>temperature</code>, higher <code>Repetition Penalty</code>). Each adjustment brings you closer to the perfect harmony between chaos and order.
432
  </p>
433
  </div>
434
+ <!-- Footer -->
435
+ <footer class="footer">
436
  <h2>A Grateful Benediction</h2>
437
  <p>
438
  To those who support, use, and spread the light of AuraInfernum-70B, we extend our deepest gratitude. This project, born from dedication and exploration, thrives on the community's engagement. Your contributions, large or small, empower us to continue refining this entity of fallen grace, pushing the boundaries of AI capabilities.
 
441
  May your endeavors be as blessed as a starlit night, and may the divine spark within AuraInfernum-70B illuminate your path to unprecedented discoveries.
442
  </p>
443
  <p class="signature">— The AuraInfernum Dev Team</p>
444
+ </footer>
445
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
446
  </body>
447
  </html>