#Prompting

Posts tagged Prompting.

What a large language model actually predicts
What a large language model actually predicts
12/09/2026 — admin@byqreal.test

A model does not look anything up and does not decide what is true. It estimates which token comes next. Almost everythi...

Why temperature changes the answer, not the knowledge
Why temperature changes the answer, not the knowledge
08/09/2026 — admin@byqreal.test

Turning temperature down does not make a model more accurate. It makes it more repeatable — and confusing the two is how...

Training, fine-tuning and prompting are three different tools
Training, fine-tuning and prompting are three different tools
04/09/2026 — admin@byqreal.test

Teams reach for fine-tuning when they need context, and for prompting when they need behaviour. Knowing which problem ea...

Why models hallucinate, and what actually reduces it
Why models hallucinate, and what actually reduces it
31/08/2026 — admin@byqreal.test

Hallucination is not a glitch that a better model will one day remove. It is what generation does when it has nothing to...

System prompts: the instructions the user never sees
System prompts: the instructions the user never sees
29/08/2026 — admin@byqreal.test

A system prompt sets the rules for everything that follows. Written well it is the cheapest quality improvement availabl...

Structured output beats parsing prose
Structured output beats parsing prose
27/08/2026 — admin@byqreal.test

If your code needs a value from a model, ask for JSON and validate it. Regexing an answer out of a paragraph is a bug wa...

Tool calling is an API contract the model can read
Tool calling is an API contract the model can read
21/08/2026 — admin@byqreal.test

A tool definition is documentation with a schema attached. Write it for a capable colleague who has never seen your syst...

Generating layouts that respect a grid
Generating layouts that respect a grid
09/08/2026 — admin@byqreal.test

Generated layouts usually look almost right, and "almost" is where the eye catches. Most of the fix is stating the rules...

Why component names matter more with AI in the loop
Why component names matter more with AI in the loop
07/08/2026 — admin@byqreal.test

A human reads a bad component name and opens the file. A model reads it and guesses. Naming quietly became an interface...

How to evaluate an AI feature before you ship it
How to evaluate an AI feature before you ship it
24/07/2026 — admin@byqreal.test

You cannot unit test "is this a good answer", but you can build a set of real cases with known-good outputs. An afternoo...

Writing prompts your team can maintain
Writing prompts your team can maintain
20/07/2026 — admin@byqreal.test

Prompts are code with none of the tooling. Treat them like code anyway — version them, review them, test them, and expla...