AI · Flashcard
A team builds a chat feature and assumes the API remembers previous messages by conversation ID, but Claude never recalls earlier turns. Why?
Why this is the answer
The Messages API is stateless: there is no server-side memory, so the client resends prior turns each call. There is no conversation ID that reloads server state (2), no idle-expiry cache of turns (3), and history is not tied to an SSE stream (4).
Read more in the docsMore Claude Certified Developer — Foundations flashcards
- A developer is told the model processes text as tokens rather than whole words. What is a token most accurately?
- A team must pick a model for a new feature. What is the fundamental trade-off across model tiers?
- A team debates whether their feature is an agent or a workflow. What most clearly distinguishes an agent?
