Model reference · open weights
bet is an open-weight language model from appvoid. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | appvoid |
|---|---|
| Type | Language models |
| Task | Text gen |
| Parameters (lead) | 11M |
| Context | 512 tokens |
| Released | 2026-09-10 |
| Popularity | 980 downloads / month |
| Licence | Open weights |
About
img { display: block; position: static; width: min(76%, 768px); height: auto; max-width: 100%; margin: 3rem auto 2.5rem; object-fit: contain;
border: 2px solid rgba(255, 255, 255, 0.16); border-radius: 1rem; outline: none;
user-select: none; -webkit-user-select: none; -moz-user-select: none; -webkit-user-drag: none;
filter: none !important; transform: scale(1) !important; animation: none !important; box-shadow: none !important;
position: relative; z-index: 1; transform-origin: center; }
These are the official weights of the Byte-Level Elasticity Transformer, a new kind of computation-aware architecture that serves as a baseline for researchers to discover meaningful ways to spend computation through loop-sharing the same layer weights while extrapolating to steps beyond those seen during training.
| Benchmark | Score |
|---|---|
| HellaSwag | 28.79% |
| PIQA | 52.72% |
| ARC-Easy | 30.77% |
| ARC-Challenge | 21.76% |
| ArithMark-3 | 31.20% |
For details on development of this model, you can read the official blog. This model is heavily undertrained (just ~200 million tokens) so performance might not be good enough for its size, especially for 2 and 3 cycles. Benchmarks used L6 but the author has not tested other configurations. You can find more information on how to support further research here.
For faster inference and control over loops refer to the notebook.
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
model_id = "appvoid/bet-10m"
tokenizer = AutoTokenizer.from_pretrained(
model_id,
trust_remote_code=True,
)
model = AutoModelForCausalLM.from_pretrained(
model_id,
trust_remote_code=True,
torch_dtype=torch.float16,
).cuda().eval()
prompt = "The future of artificial intelligence is"
inputs = tokenizer(
prompt,
return_tensors="pt",
add_special_tokens=False,
).to(model.device)
with torch.inference_mode():
output = model.generate(
**inputs,
max_new_tokens=200,
do_sample=True,
temperature=0.8,
top_p=0.95,
use_cache=True,
)
print(tokenizer.decode(output[0], skip_special_tokens=True))
@misc{appvoid2026bet,
title = {Byte-Level Elasticity: Depth through time},
author = {appvoid},
year = {2026},
url = {https://medium.com/@appvoidofficial/byte-level-elasticity-182fe2ed1d2f}
}From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys bet for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (bet below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"bet","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.