# What is memory in AI assistants and agents? — QANATONE

> Memory lets an AI assistant keep information from past conversations and recall it later. The software around the model holds that memory.

Kaynak: https://www.qanatone.com/en/nedir/ai-memory-nedir/

---

[Explainers](https://www.qanatone.com/en/nedir/)

# What is memory in AI assistants and agents?

15 Sep 2026 2 min read Architecture · Memory

Memory lets an AI assistant keep information from past conversations and recall it later. The software around the model holds that memory.

## Why does a model not remember on its own?

A language model only sees the text it is given in the current request. Yesterday's conversation does not exist for the model unless it is supplied again. Chat apps feel like they remember because they put earlier messages back into the [context window](https://www.qanatone.com/en/nedir/context-window-nedir/) every time. When the window is full, the oldest messages drop out.

## Short and long term memory

Short term memory is the part of the current conversation that sits in the window. Long term memory is information carried between conversations: the user's name, preferences, past orders, earlier decisions.

Long term memory usually works like this: the system extracts important facts from a conversation and writes them to a database. In a new conversation it searches for records related to the question (often with a [vector database](https://www.qanatone.com/en/nedir/vektor-veritabani-nedir/)) and gives what it finds to the model. Assistants such as ChatGPT, Claude and Gemini offer this kind of memory to users, who can see and delete what is remembered.

## Memory in agents

[AI agents](https://www.qanatone.com/en/nedir/ai-agent-nedir/) work over many steps, so they need memory even more. They have to track which steps are done, what each tool returned and what the user approved. On long tasks an agent writes intermediate results to a notes file or database and reads them back when needed.

## Risks

A wrongly stored fact carries over into every later conversation. Storing personal data falls under privacy law: what is kept, for how long and for what purpose must be clear, and users must be able to have it deleted. A well designed memory does not save everything. It keeps what is useful and updates what goes stale.

## More articles

[Applications · Function Calling ### What is function calling in AI? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/function-calling-nedir/)[Safety · Guardrails ### What are guardrails in AI? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/guardrail-nedir/)[Reliability · Hallucination ### What is AI hallucination and why does it happen? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/halusinasyon-nedir/)[Infrastructure · Inference ### What is inference in AI? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/inference-nedir/)[Marketing · Influencers ### What is influencer marketing and how does it work? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/influencer-marketing-nedir/)[Performance · Latency ### What is latency in AI applications? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/latency-nedir/)[Model Type · LCM ### What is a Large Concept Model (LCM)? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/lcm-nedir/)[Model Type · LAM ### What is a Large Action Model (LAM)? 15 Sep 2026 · 2 min](https://www.qanatone.com/en/nedir/lam-nedir/)
