Chain of thoughtCoT
Models & architecture
#
The intermediate reasoning a model writes before answering. Some APIs return it in a separate field, some write it straight into the answer — and code that expects a clean answer breaks on the second kind without any error.
From our own stackTwo models we run handle the same “no thinking” flag in opposite directions: one ignores it and puts the reasoning in a separate field, leaving the answer clean; the other ignores it and writes the reasoning into the answer. Both are silent. The flag is worth a test, not an assumption.
See also
Reasoning model · Structured output
Chunking
Agents & tools
#
Splitting documents into passages small enough to retrieve precisely and large enough to still make sense alone. It is the least glamorous part of a retrieval system and the part that most often decides whether it works.
See also
Retrieval-augmented generation · Embedding
Cold start
Running a model
#
The first request after a model has been evicted from memory pays for loading tens of gigabytes from disk. Keeping a model resident costs VRAM continuously; letting it unload costs a slow first answer every time.
See also
VRAM · Time to first token
Confidence score
Evaluation & failure
#
A number the model reports about its own certainty. It is generated text like everything else, not a calibrated probability, and a wrong answer can carry a high one.
See also
Hallucination · Eval
Context engineering
Agents & tools
#
Deciding what goes into the limited context and what stays out — the discipline that replaced prompt wording as the main lever once models got good. Most quality problems in agent systems are context problems.
See also
Context window · Prompt · Memory
Context window
Models & architecture
#
How much text a model can hold in view at once, prompt and answer together. A large window is an upper bound, not a promise: the model sees exactly what your code sends, not what is in your files.
From our own stackOne of our extraction jobs returned an empty field on every document for weeks. The model had a million-token window; the prompt sent the first 12,000 characters, and the decisive sentence sat at character 224,283. When a field is persistently empty, check whether the text ever reached the model before rewriting the prompt.
See also
Attention · Chunking · Context engineering
Cosine similarity
Agents & tools
#
The usual measure of how close two embeddings are, from 1 (same direction) down to 0. The number is only meaningful relative to a corpus you have calibrated on — there is no universal threshold for “the same”.
See also
Embedding · Semantic search