Model reference · open weights

bet

Available as managed deployment LLMs appvoid · community Text gen 1 variants 980 dl/mo

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 byappvoid
TypeLanguage models
TaskText gen
Parameters (lead)11M
Context512 tokens
Released2026-09-10
Popularity980 downloads / month
LicenceOpen weights

About

What bet is

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; }

Read the full model card

Model weights from Byte-Level Elasticity: Depth through time

Details

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.

BenchmarkScore
HellaSwag28.79%
PIQA52.72%
ARC-Easy30.77%
ARC-Challenge21.76%
ArithMark-331.20%
  • Parameters: 10,881,809
  • Source training step: 65,000
  • Byte vocabulary: 259 IDs (0-255 bytes + PAD/BOS/EOS)
  • Context: 512 bytes
  • Physical Transformer blocks: 6
  • Persistent state streams: 2
  • Dynamic balanced routing
  • Continuous computational phase/stride conditioning
  • Default inference budget: 6 refinement cycles
  • Training objective: CE(6-cycle endpoint) + 0.10 * CE(3-cycle endpoint)

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.

Inference

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

Call it like any OpenAI endpoint

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.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms