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

# Writing memory

> Write records into EDN memory through the Memory endpoints.

## Overview

Writing memory is how content enters EDN. You send records through the Memory
endpoints, and EDN classifies and stores them with their provenance so they can
be retrieved later as governed context.

## Endpoints

<CardGroup cols={2}>
  <Card title="Ingest round" icon="arrow-right-to-bracket" href="/api-reference/ingest-round">
    Write memory from a conversation round.
  </Card>

  <Card title="Infer round" icon="wand-magic-sparkles" href="/api-reference/infer-round">
    Infer records from a round.
  </Card>

  <Card title="Generated round" icon="robot" href="/api-reference/generated-round">
    Record model-generated content.
  </Card>

  <Card title="Confirm record" icon="circle-check" href="/api-reference/confirm-memory-record">
    Confirm a record so it is treated as a confirmed fact.
  </Card>

  <Card title="List records" icon="list" href="/api-reference/list-memory-records">
    List stored memory records.
  </Card>

  <Card title="Delete record" icon="trash" href="/api-reference/delete-memory-record">
    Delete a memory record.
  </Card>
</CardGroup>

<Note>
  A fuller step-by-step tutorial for writing memory is coming. For now, the
  endpoint pages above document every field and let you try each call.
</Note>
