Spaces:
Sleeping
Sleeping
Taylor commited on
Commit ·
e53822f
1
Parent(s): 16078d7
chore: add void attention footer links
Browse files
README.md
CHANGED
|
@@ -21,3 +21,8 @@ top-k/top-p sampling and Glossolalia fork/race/fold decoder on the same prompts.
|
|
| 21 |
Loads instantly — no API calls needed.
|
| 22 |
|
| 23 |
[Paper](https://forkracefold.com) | [Source](https://github.com/forkjoin-ai/aether) | [Live Demo](https://huggingface.co/spaces/forkjoin-ai/glossolalia-engine)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
Loads instantly — no API calls needed.
|
| 22 |
|
| 23 |
[Paper](https://forkracefold.com) | [Source](https://github.com/forkjoin-ai/aether) | [Live Demo](https://huggingface.co/spaces/forkjoin-ai/glossolalia-engine)
|
| 24 |
+
|
| 25 |
+
---
|
| 26 |
+
[Void Attention](https://huggingface.co/spaces/forkjoin-ai/void-attention)
|
| 27 |
+
|
| 28 |
+
Copyright 2026 forkjoin.ai
|
app.py
CHANGED
|
@@ -166,6 +166,15 @@ memorized code patterns.
|
|
| 166 |
Model weights loaded from Google Cloud Storage, inference on Cloud Run.*
|
| 167 |
""")
|
| 168 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 169 |
|
| 170 |
if __name__ == "__main__":
|
| 171 |
demo.launch()
|
|
|
|
| 166 |
Model weights loaded from Google Cloud Storage, inference on Cloud Run.*
|
| 167 |
""")
|
| 168 |
|
| 169 |
+
gr.Markdown(
|
| 170 |
+
"""
|
| 171 |
+
---
|
| 172 |
+
[Void Attention](https://huggingface.co/spaces/forkjoin-ai/void-attention)
|
| 173 |
+
|
| 174 |
+
Copyright 2026 forkjoin.ai
|
| 175 |
+
"""
|
| 176 |
+
)
|
| 177 |
+
|
| 178 |
|
| 179 |
if __name__ == "__main__":
|
| 180 |
demo.launch()
|