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

# Get Short Term Memory Config

> Get short-term memory configuration.

    Returns the current short-term memory configuration including LLM model,
    message capacity, and enabled status.



## OpenAPI

````yaml /openapi.json get /api/v2/config/memory/episodic/short_term
openapi: 3.1.0
info:
  title: MemMachine API
  version: 0.3.10
  description: >-
    Architectural Memory Systems for AI Agents. Specialized in episodic and
    semantic memory management with strict namespace isolation.
servers:
  - url: http://localhost:8080
security: []
tags:
  - name: Configuration
    description: System overview and memory subsystem configuration.
  - name: Episodic Configuration
    description: Per-project episodic memory subsystem configuration.
  - name: Memories
    description: Core operations for episodic and semantic memory ingestion and retrieval.
  - name: Projects
    description: Lifecycle management for isolated memory namespaces.
  - name: Resources
    description: Embedder, language model, and reranker lifecycle management.
  - name: 'Semantic Memory: Categories'
    description: Category, template, and tag management for semantic sets.
  - name: 'Semantic Memory: Features'
    description: Add, retrieve, and update individual semantic features.
  - name: 'Semantic Memory: Sets'
    description: Set type and set ID lifecycle, listing, and configuration.
  - name: System
    description: Infrastructure, health, and observability.
paths:
  /api/v2/config/memory/episodic/short_term:
    get:
      tags:
        - Configuration
      summary: Get Short Term Memory Config
      description: |-
        Get short-term memory configuration.

            Returns the current short-term memory configuration including LLM model,
            message capacity, and enabled status.
      operationId: get_short_term_memory_config_configuration
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShortTermMemoryConfigResponse'
components:
  schemas:
    ShortTermMemoryConfigResponse:
      properties:
        llm_model:
          anyOf:
            - type: string
            - type: 'null'
          title: Llm Model
          description: |2-

                ID of the language model used for short-term memory summarization.
        message_capacity:
          anyOf:
            - type: integer
            - type: 'null'
          title: Message Capacity
          description: |2-

                Maximum message capacity for short-term memory, in characters.
        enabled:
          type: boolean
          title: Enabled
          description: |2-

                Whether short-term memory is enabled.
          default: true
      type: object
      title: ShortTermMemoryConfigResponse
      description: Response model for short-term memory configuration.

````