10 posts found
Bigger context windows did not give models memory. They gave you a larger envelope to fill on every single request — and...
Hallucination is not a glitch that a better model will one day remove. It is what generation does when it has nothing to...
A system prompt sets the rules for everything that follows. Written well it is the cheapest quality improvement availabl...
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...
Most production traffic does not need the largest model available. Routing by task rather than defaulting to the top of...
You cannot unit test "is this a good answer", but you can build a set of real cases with known-good outputs. An afternoo...
Per-token pricing looks trivial until you multiply by retries, conversation history and the context you resend on every...
Prompts are code with none of the tooling. Treat them like code anyway — version them, review them, test them, and expla...
Your AI feature will be confidently wrong in front of a user. What the interface does in that moment decides whether the...
The best first AI feature is small, measurable and easy to switch off. Start where a wrong answer is cheap and the value...