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

# List entity pairs settled as different things

> Pairs a human or a model decided are not the same thing. Recorded so the resolver never raises them again. Reverting one puts the question back in the queue.



## OpenAPI

````yaml /openapi.yaml get /memory/entities/settled
openapi: 3.1.0
info:
  title: memloom local API
  version: 0.1.0
  description: >
    The HTTP API served by the `memloom serve` daemon on your machine. The CLI,
    the MCP server,

    and the viewer all route through this API. The daemon is the single owner of
    the store, so

    every client shares one consistent view of your memories.


    No authentication: the daemon binds to `127.0.0.1` only and is reachable
    solely from your

    own machine. Browser clients on other localhost ports are allowed via CORS.
servers:
  - url: http://127.0.0.1:4319
    description: Local memloom daemon
security: []
paths:
  /memory/entities/settled:
    get:
      summary: List entity pairs settled as different things
      description: >-
        Pairs a human or a model decided are not the same thing. Recorded so the
        resolver never raises them again. Reverting one puts the question back
        in the queue.
      operationId: listSettledEntityPairs
      responses:
        '200':
          description: The settled pairs.
          content:
            application/json:
              schema:
                type: object
                properties:
                  settled:
                    type: array
                    items:
                      $ref: '#/components/schemas/SettledEntityPair'
components:
  schemas:
    SettledEntityPair:
      type: object
      description: Two entity spellings decided to be different things.
      properties:
        id:
          type: string
          format: uuid
        incomingName:
          type: string
        candidateName:
          type: string
        decidedBy:
          type: string
          enum:
            - auto
            - llm
            - human
        model:
          type: string
          nullable: true
          description: Which model decided, when decidedBy is `llm`.
        reason:
          type: string
          nullable: true
        resolvedAt:
          type: string
          format: date-time

````