# How It Thinks: Context, Tokens, Reasoning When you send a message and a useful answer comes back, a few things happen in between that explain a lot of what people find puzzling. Knowing them tells you why your AI employee sometimes forgets, what you are actually paying for, and when a slower answer is the smarter one. ## Why it remembers and forgets An AI employee can only hold so much text in front of it at one time. Everything it is working with right now (your instructions, the conversation so far, any documents you handed it) has to fit inside that space. The technical name for that space is the context window, and it has a fixed size. When the space fills up, the oldest details start to fall out the back to make room for new ones. That is why a long conversation can start "forgetting" something you said near the beginning. It is not being careless; the earlier detail simply no longer fits. The fix is to remind it, or to start fresh and re-state what matters. - The context window is its working memory for one task, not permanent storage. - Long chats push out early details. Restate key facts instead of assuming they stuck. ## What you actually pay for AI employees do not read text by the letter or the word. They break it into small chunks (a short word might be one chunk, a longer one a few) and count those. Each chunk is called a token, and tokens are the unit everything is measured in: the size of the context window, and the price of a request. This is why longer matters. A bigger document, a longer conversation, or a wordier instruction means more tokens, which means it takes up more of that limited space and costs more to process. Being clear and concise is not just good style; it is the cheaper, more reliable way to work. - Cost and the memory limit are both counted in tokens, not pages or characters. - More text in equals more tokens equals higher cost. Trim what it does not need. ## Fast answers vs careful ones Producing an answer is called inference. For simple requests, a quick pass is plenty. For harder ones, some models (or a deeper mode of the same model) will think through more steps before they reply. That extra deliberation is what people mean by reasoning, and it tends to give better answers on tricky, multi-step work. The trade-off is plain: more thinking is slower and costs more. So match the effort to the job. A quick reformat or a short reply does not need deep reasoning; a careful plan, a thorny analysis, or anything where a wrong answer is expensive does. Choosing the right model for the task is part of using an AI employee well, not a detail to ignore. - A quick draft or simple lookup: fast and cheap is the right call. - Hard, multi-step, or high-stakes work: spend on deeper reasoning, take the slower answer. ## Key takeaways - The context window is its working memory; once full, the oldest details fall out, so restate what matters. - Everything is counted in tokens, and both the memory limit and the price scale with how much text you give it. - Reasoning means thinking through more steps before answering: better on hard tasks, but slower and pricier. - Match the effort to the job, and pick the right model for the task rather than always reaching for the heaviest one. ## Continue learning - [Working With AI Employees](/en/free-ai-courses/working-with-ai-employees) — View the complete course. - [Next: What It Knows: Memory, Training, Knowledge](/en/free-ai-courses/working-with-ai-employees/what-it-knows)