> ## 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.

# Overview

> EDN as a governed memory layer between your application and your model.

## A governed memory layer

EDN sits between your application and the language model you choose. Your
application writes content into EDN and asks EDN for context. EDN stores that
content, classifies it by where it came from, and returns a compact, governed
package of context that your application places in front of its model.

EDN does not call a model to answer questions and does not route to a provider.
The model is yours. EDN's job is to make the context that reaches your model
honest and traceable.

## What "governed" means here

Every record EDN holds carries a provenance class that records its origin, for
example a fact the user stated, a fact confirmed by the user, a fact verified
from a document, or an AI inference. Retrieval and context assembly respect
those classes: inferences are never presented as established facts, and
AI-generated content is kept out of the sections your model treats as ground
truth.

## What EDN gives your application

<CardGroup cols={2}>
  <Card title="Structured persistence" icon="database">
    Records are typed and classified, not free text blobs.
  </Card>

  <Card title="Deterministic retrieval" icon="magnifying-glass">
    Context is selected by a fixed similarity query, not by a model.
  </Card>

  <Card title="Typed corrections" icon="pen-to-square">
    A dedicated channel to correct what memory holds.
  </Card>

  <Card title="Provenance and citations" icon="quote-left">
    Every returned item can be traced to its origin.
  </Card>
</CardGroup>

## Next

<CardGroup cols={2}>
  <Card title="How EDN works" icon="diagram-project" href="/developer/how-edn-works">
    The path from content in to governed context out.
  </Card>

  <Card title="Core concepts" icon="lightbulb" href="/developer/core-concepts">
    Provenance, retrieval, abstention, and the SIP.
  </Card>
</CardGroup>
