King3Djbl commited on
Commit
a9ee468
ยท
verified ยท
1 Parent(s): cf7369a

FableForge Nexus: static viral hub linking all Spaces

Browse files
Files changed (2) hide show
  1. README.md +8 -6
  2. index.html +119 -18
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Fableforge Nexus
3
- emoji: ๐Ÿ“ˆ
4
- colorFrom: yellow
5
- colorTo: red
6
  sdk: static
7
- pinned: false
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: FableForge Nexus
3
+ emoji: ๐Ÿ”ฎ
4
+ colorFrom: purple
5
+ colorTo: indigo
6
  sdk: static
7
+ app_file: index.html
8
+ pinned: true
9
  ---
10
 
11
+ # ๐Ÿ”ฎ FableForge Nexus
12
+ The central hub linking every FableForge demo. One open model ([King3Djbl/mythos-9b-unhinged](https://huggingface.co/King3Djbl/mythos-9b-unhinged)), a galaxy of worlds โ€” all free.
index.html CHANGED
@@ -1,19 +1,120 @@
1
  <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <!doctype html>
2
+ <html lang="en"><head>
3
+ <meta charset="utf-8"/>
4
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
5
+ <title>FableForge ยท The Galaxy of AI Demos</title>
6
+ <meta property="og:title" content="FableForge โ€” a galaxy of live AI demos"/>
7
+ <meta property="og:description" content="One open 9B model. A dozen playable worlds. All free."/>
8
+ <style>
9
+ :root { color-scheme: dark; }
10
+ * { box-sizing: border-box; }
11
+ body { margin:0; font-family:system-ui,-apple-system,sans-serif; background:#0a0614; color:#ece7fb; }
12
+ a { color:inherit; text-decoration:none; }
13
+ .hero { text-align:center; padding:72px 20px 28px;
14
+ background:radial-gradient(1200px 400px at 50% -80px,#3a1d70 0%,transparent 70%); }
15
+ .hero h1 { font-size:clamp(2.4rem,7vw,4.6rem); margin:0; font-weight:800; letter-spacing:-.02em;
16
+ background:linear-gradient(90deg,#b388ff,#ff8ae2,#8ad4ff,#b388ff);
17
+ background-size:300% auto; -webkit-background-clip:text; background-clip:text;
18
+ color:transparent; animation:shine 8s linear infinite; }
19
+ @keyframes shine { to { background-position:300% center; } }
20
+ .hero p { font-size:clamp(1rem,2.4vw,1.35rem); color:#c3b6e8; margin:14px auto 0; max-width:640px; }
21
+ .cta-row { margin-top:26px; display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
22
+ .btn { padding:13px 26px; border-radius:999px; font-weight:700; font-size:.98rem;
23
+ transition:transform .15s, box-shadow .15s; }
24
+ .btn.primary { background:#7c3aed; color:#fff; box-shadow:0 0 34px #7c3aed77; }
25
+ .btn.ghost { background:#1c1235; color:#d9ccff; border:1px solid #3a2a63; }
26
+ .btn:hover { transform:translateY(-2px) scale(1.03); }
27
+ .grid { display:grid; gap:20px; padding:36px; max-width:1180px; margin:0 auto;
28
+ grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); }
29
+ .card { background:#140c29; border:1px solid #2a1c4a; border-radius:16px; overflow:hidden;
30
+ display:flex; flex-direction:column; transition:transform .18s, box-shadow .18s, border-color .18s; }
31
+ .card:hover { transform:translateY(-6px); box-shadow:0 16px 46px #7c3aed44; border-color:#7c3aed; }
32
+ .card.dim { opacity:.55; }
33
+ .card.dim:hover { opacity:.85; }
34
+ .thumb { height:150px; background-size:cover; background-position:center; position:relative; }
35
+ .live, .soon { position:absolute; top:10px; right:10px; font-size:.7rem; font-weight:800;
36
+ padding:4px 9px; border-radius:999px; letter-spacing:.04em; }
37
+ .live { background:#0f2a17; color:#4ade80; border:1px solid #22c55e; }
38
+ .soon { background:#2a220f; color:#fbbf24; border:1px solid #a16207; }
39
+ .card h3 { margin:14px 16px 6px; font-size:1.1rem; }
40
+ .card p { margin:0 16px 18px; color:#b1a3d8; font-size:.9rem; line-height:1.4; }
41
+ footer { text-align:center; padding:44px 20px 60px; color:#8a7ab0; }
42
+ footer a { color:#c3b0ff; }
43
+ </style></head>
44
+ <body>
45
+ <section class="hero">
46
+ <h1>๐Ÿ”ฎ FableForge</h1>
47
+ <p>A galaxy of live AI demos powered by one open 9B model โ€” <b>King3Djbl/mythos-9b-unhinged</b>. A dozen playable worlds. All free.</p>
48
+ <div class="cta-row">
49
+ <a class="btn primary" href="https://huggingface.co/King3Djbl/mythos-9b-unhinged" target="_blank">โฌ‡๏ธ Download the model</a>
50
+ <a class="btn ghost" href="https://twitter.com/intent/tweet?text=%F0%9F%94%AE%20FableForge%3A%20a%20galaxy%20of%20live%20AI%20demos%20powered%20by%20one%20open%209B%20model.%20Play%20them%20free%3A&url=https%3A//huggingface.co/spaces/fableforge-ai/fableforge-nexus" target="_blank">๐Ÿฆ Share on X</a>
51
+ <a class="btn ghost" href="https://www.reddit.com/submit?url=https%3A//huggingface.co/spaces/fableforge-ai/fableforge-nexus&title=%F0%9F%94%AE%20FableForge%3A%20a%20galaxy%20of%20live%20AI%20demos%20powered%20by%20one%20open%209B%20model.%20Play%20them%20free%3A" target="_blank">๐Ÿ‘ฝ Post to Reddit</a>
52
+ </div>
53
+ </section>
54
+ <section class="grid">
55
+ <a class="card" href="https://huggingface.co/spaces/fableforge-ai/infinite-npc" target="_blank" rel="noopener">
56
+ <div class="thumb" style="background-image:url('https://placehold.co/600x300/1a1030/e0d0ff/png?text=%F0%9F%8D%BA%20Infinite%20NPC')"><span class="live">โ— LIVE</span></div>
57
+ <h3>๐Ÿบ Infinite NPC</h3>
58
+ <p>An NPC that remembers every visitor.</p>
59
+ </a>
60
+ <a class="card" href="https://huggingface.co/spaces/fableforge-ai/ghost-writer" target="_blank" rel="noopener">
61
+ <div class="thumb" style="background-image:url('https://placehold.co/600x300/1a1030/e0d0ff/png?text=%F0%9F%91%BB%20Ghost%20Writer')"><span class="live">โ— LIVE</span></div>
62
+ <h3>๐Ÿ‘ป Ghost Writer</h3>
63
+ <p>A co-writer that finishes your sentences.</p>
64
+ </a>
65
+ <a class="card" href="https://huggingface.co/spaces/fableforge-ai/semantic-story-tree" target="_blank" rel="noopener">
66
+ <div class="thumb" style="background-image:url('https://placehold.co/600x300/1a1030/e0d0ff/png?text=%F0%9F%8C%B3%20Semantic%20Story%20Tree')"><span class="live">โ— LIVE</span></div>
67
+ <h3>๐ŸŒณ Semantic Story Tree</h3>
68
+ <p>Emotion sliders branch the tale.</p>
69
+ </a>
70
+ <a class="card" href="https://huggingface.co/spaces/fableforge-ai/dual-gm-simulator" target="_blank" rel="noopener">
71
+ <div class="thumb" style="background-image:url('https://placehold.co/600x300/1a1030/e0d0ff/png?text=%F0%9F%8E%AD%20Dual-GM%20Simulator')"><span class="live">โ— LIVE</span></div>
72
+ <h3>๐ŸŽญ Dual-GM Simulator</h3>
73
+ <p>Two AIs auto-play a fantasy RPG.</p>
74
+ </a>
75
+ <a class="card dim" href="https://huggingface.co/spaces/fableforge-ai/vision-debugger" target="_blank" rel="noopener">
76
+ <div class="thumb" style="background-image:url('https://placehold.co/600x300/1a1030/e0d0ff/png?text=%F0%9F%94%8D%20Vision%20Debugger')"><span class="soon">SOON</span></div>
77
+ <h3>๐Ÿ” Vision Debugger</h3>
78
+ <p>Self-correcting 3D scene generator.</p>
79
+ </a>
80
+ <a class="card dim" href="https://huggingface.co/spaces/fableforge-ai/constellation-explorer" target="_blank" rel="noopener">
81
+ <div class="thumb" style="background-image:url('https://placehold.co/600x300/1a1030/e0d0ff/png?text=%F0%9F%8C%A0%20Constellation%20Explorer')"><span class="soon">SOON</span></div>
82
+ <h3>๐ŸŒ  Constellation Explorer</h3>
83
+ <p>3D interactive dataset galaxy.</p>
84
+ </a>
85
+ <a class="card dim" href="https://huggingface.co/spaces/fableforge-ai/shellwhisperer-terminal" target="_blank" rel="noopener">
86
+ <div class="thumb" style="background-image:url('https://placehold.co/600x300/1a1030/e0d0ff/png?text=%F0%9F%92%BB%20ShellWhisperer')"><span class="soon">SOON</span></div>
87
+ <h3>๐Ÿ’ป ShellWhisperer</h3>
88
+ <p>AI-powered Linux terminal.</p>
89
+ </a>
90
+ <a class="card dim" href="https://huggingface.co/spaces/fableforge-ai/arena-vs-clones" target="_blank" rel="noopener">
91
+ <div class="thumb" style="background-image:url('https://placehold.co/600x300/1a1030/e0d0ff/png?text=%E2%9A%94%EF%B8%8F%20Arena%20vs%20Clones')"><span class="soon">SOON</span></div>
92
+ <h3>โš”๏ธ Arena vs Clones</h3>
93
+ <p>Blind A/B testing vs competitors.</p>
94
+ </a>
95
+ <a class="card dim" href="https://huggingface.co/spaces/fableforge-ai/refusal-tester" target="_blank" rel="noopener">
96
+ <div class="thumb" style="background-image:url('https://placehold.co/600x300/1a1030/e0d0ff/png?text=%F0%9F%9B%A1%EF%B8%8F%20Refusal%20Tester')"><span class="soon">SOON</span></div>
97
+ <h3>๐Ÿ›ก๏ธ Refusal Tester</h3>
98
+ <p>Live refusal-rate stress tester.</p>
99
+ </a>
100
+ <a class="card dim" href="https://huggingface.co/spaces/fableforge-ai/gm-screen" target="_blank" rel="noopener">
101
+ <div class="thumb" style="background-image:url('https://placehold.co/600x300/1a1030/e0d0ff/png?text=%F0%9F%97%BA%EF%B8%8F%20GM%20Screen')"><span class="soon">SOON</span></div>
102
+ <h3>๐Ÿ—บ๏ธ GM Screen</h3>
103
+ <p>Tactical campaign dashboard with map.</p>
104
+ </a>
105
+ <a class="card dim" href="https://huggingface.co/spaces/fableforge-ai/genesis-forge" target="_blank" rel="noopener">
106
+ <div class="thumb" style="background-image:url('https://placehold.co/600x300/1a1030/e0d0ff/png?text=%F0%9F%8C%8D%20Genesis%20Forge')"><span class="soon">SOON</span></div>
107
+ <h3>๐ŸŒ Genesis Forge</h3>
108
+ <p>Self-modifying 3D world engine.</p>
109
+ </a>
110
+ <a class="card dim" href="https://huggingface.co/spaces/fableforge-ai/living-world" target="_blank" rel="noopener">
111
+ <div class="thumb" style="background-image:url('https://placehold.co/600x300/1a1030/e0d0ff/png?text=%F0%9F%8F%B0%20Living%20World')"><span class="soon">SOON</span></div>
112
+ <h3>๐Ÿฐ Living World</h3>
113
+ <p>Persistent 3D RPG with NPC memory + P2P.</p>
114
+ </a>
115
+ </section>
116
+ <footer>
117
+ Built free on ๐Ÿค— Spaces ยท CPU + GGUF ยท <a href="https://huggingface.co/King3Djbl/mythos-9b-unhinged">Get the model</a><br/>
118
+ โญ Star the Spaces ยท ๐Ÿ” Share ยท ๐Ÿ”ง Remix โ€” every world runs on the same open weights.
119
+ </footer>
120
+ </body></html>