About this tool
A-Z dictionary of LLM terms — tokens, temperature, top-p, RAG, LoRA — with examples, typical values and a context budget check.
LLM Terms Dictionary is an A–Z reference of 52 large-language-model terms — token, context window, temperature, top-p, RAG, LoRA, quantisation, hallucination and the rest — where each entry gives a standalone definition, a concrete example, and a practical tip with a typical value where one exists. Entries are tagged by kind (core concept, sampling setting, technique, training method, serving, failure mode, metric) and are searchable by headword or by the API parameter name you actually see in the docs, so looking up "top_p" or "BPE" finds the right page. It also includes a context-budget check that estimates prompt size at roughly one token per four characters and tells you whether prompt plus reserved answer fits your model's window.
Open LLM Terms Dictionary on AltFTool — it loads instantly in your browser.
Enter the terms one per line in the "LLM terms" box — temperature, context window, RAG and embeddings are prefilled.
Set "Audience" to who is reading, then pick a "Depth": Plain beginner, Practical operator or Technical concise.
Read the "Dictionary brief" panel — one bullet per term covering the one-sentence definition, why it matters and a "when to change it" example — then press "Copy output".
Every entry carries aliases — top_p, BPE, developer message — so the term you saw in a request body leads to the explanation.
Meaning, a worked example with real numbers, and what to actually do with the setting, rather than a circular one-line gloss.
The same page carries a context-budget calculator that turns your prompt text into an estimated token count and percentage of the window used.
About four characters of ordinary English prose per token, or roughly 750 words per 1,000 tokens — the vendor rule of thumb this tool's estimator uses. Code, numbers, rare words and non-Latin scripts split into noticeably more tokens than that, so treat the figure as a planning estimate, never a billing number.
Temperature rescales the whole probability distribution before sampling, while top-p truncates it to the smallest set of tokens whose probabilities sum to p and samples only from that set. Both control randomness, which is why the usual advice is to tune one and leave the other at its default rather than lowering both at once.
Everything in one request shares the same budget: the system prompt, the full conversation history you resend, any retrieved documents, and the answer the model is about to generate. A 128,000-token window holding a 120,000-token document leaves only 8,000 tokens for the reply, which is why the calculator asks you to reserve the answer size up front.
No — each model family has its own tokenizer, so the same paragraph might be 210 tokens for one and 260 for another. Counts are only comparable within a single model family, and reusing another model's count to plan a budget is a common way to overrun a context window.