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

# Update entity resolution confidence threshold

> Persists the entity resolution confidence threshold in ``memory_settings``. The Memory Worker reads this value at the start of each pipeline run. Valid range: 0.0 – 1.0 (default 0.85).



## OpenAPI

````yaml /api-reference/memory-api.json patch /v1/memory/config/threshold
openapi: 3.1.0
info:
  title: Strattum Memory API
  description: >-
    REST API that serves entity context — profile, timeline, graph, sources and
    formatted context — for agents and UIs. (PRD-003, Workstream 1.3)
  version: 1.0.0
servers: []
security: []
paths:
  /v1/memory/config/threshold:
    patch:
      tags:
        - memory
      summary: Update entity resolution confidence threshold
      description: >-
        Persists the entity resolution confidence threshold in
        ``memory_settings``. The Memory Worker reads this value at the start of
        each pipeline run. Valid range: 0.0 – 1.0 (default 0.85).
      operationId: configure_threshold_v1_memory_config_threshold_patch
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ThresholdRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SettingsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ThresholdRequest:
      properties:
        threshold:
          type: number
          maximum: 1
          minimum: 0
          title: Threshold
      type: object
      required:
        - threshold
      title: ThresholdRequest
    SettingsResponse:
      properties:
        er_threshold:
          type: number
          title: Er Threshold
      type: object
      required:
        - er_threshold
      title: SettingsResponse
      description: Response for GET /config/settings.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````