> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cognee.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Cognee organizes your data into AI memory. 

<img src="https://mintcdn.com/cognee/SLlciL7PTYZfGdB1/images/how-does-ai-memory-work.png?fit=max&auto=format&n=SLlciL7PTYZfGdB1&q=85&s=e2c1d3a47bbdd6b77b14ff368186242d" alt="How does AI memory work?" width="3851" height="1438" data-path="images/how-does-ai-memory-work.png" />

Give Cognee your documents, and it creates a graph of raw information, extracted concepts, and meaningful relationships you can query.

## Why AI memory matters

When you call an LLM, each request is stateless: it doesn't remember what happened in the last call, and it doesn't know about the rest of your documents.

That makes it hard to build applications that actually use your documents and carry context forward. You need a memory layer that can link your documents together and create the right context for every LLM call.

## How Cognee works

Cognee v1.0 exposes four operations that cover the full memory lifecycle:

* **[`.remember`](/core-concepts/main-operations/remember) — Store data in memory:**
  Give Cognee text, files, or URLs. It ingests, chunks, extracts entities, and builds the knowledge graph for you in one call. Supports permanent graph memory or fast session memory.

* **[`.recall`](/core-concepts/main-operations/recall) — Query memory:**
  Ask a question in natural language. Cognee picks the best retrieval strategy automatically, or you can specify one. Works across the permanent graph and session cache.

* **[`.improve`](/core-concepts/main-operations/improve) — Enrich existing memory:**
  Runs enrichment passes on an already-built graph. With session IDs, it bridges short-term session memory into the permanent graph and applies feedback-based weighting.

* **[`.forget`](/core-concepts/main-operations/forget) — Remove memory:**
  Delete a specific data item, an entire dataset, or everything owned by the current user.

If you want direct control over each pipeline step, the lower-level [Add](/core-concepts/main-operations/legacy-operations/add), [Cognify](/core-concepts/main-operations/legacy-operations/cognify), [Search](/core-concepts/main-operations/legacy-operations/search), and [Memify](/core-concepts/main-operations/legacy-operations/memify) operations are still available.

## Ready to get started?

<CardGroup cols={2}>
  <Card title="Set up your environment" href="/getting-started/installation" icon="download">
    **Installation Guide**

    Set up your environment and install Cognee to start building AI memory.
  </Card>

  <Card title="Run your first example" href="/getting-started/quickstart" icon="play">
    **Quickstart Tutorial**

    Get started with Cognee by running your first knowledge graph example.
  </Card>

  <Card title="Keep exploring" href="/core-concepts/overview" icon="compass">
    **Core Concepts**

    Dive deeper into Cognee's powerful features and capabilities.
  </Card>
</CardGroup>
