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

# Patch brainmodels

> Update the org's Company Brain model overrides



## OpenAPI

````yaml https://api.supermemory.ai/v3/openapi patch /brain/models
openapi: 3.1.0
info:
  title: supermemory API
  description: The Memory API for the AI era
  version: 3.0.0
servers:
  - description: Production Server
    url: https://api.supermemory.ai
security:
  - bearerAuth: []
tags:
  - name: Ingest
    description: Ingest documents, files, URLs, conversations, and other content
  - name: Recall (Search)
    description: >-
      Semantic recall across your content — supports memories, hybrid, and
      documents modes
  - name: Profiles
    description: >-
      Entity profiles for users, participants, or any entity — includes profile
      search
  - name: Content Management
    description: List, get, update, and delete content and memories
  - name: Spaces
    description: Organize content into spaces (container tags)
  - name: Knowledge Graph
    description: Knowledge graph and entity relationships
  - name: Connections
    description: External service integrations
  - name: Settings
    description: Organization settings
  - name: Analytics
    description: Usage analytics and insights
  - name: Documents
    description: List, get, and search documents
paths:
  /brain/models:
    patch:
      description: Update the org's Company Brain model overrides
      operationId: patchBrainModels
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                main:
                  anyOf:
                    - type: string
                      enum:
                        - claude-sonnet-5
                        - claude-opus-4.8
                        - claude-sonnet-4.6
                        - grok-4.5
                        - gpt-5.6
                        - gpt-5.5
                    - type: 'null'
                mainEffort:
                  anyOf:
                    - type: string
                      enum:
                        - low
                        - medium
                        - high
                        - xhigh
                    - type: 'null'
                triage:
                  anyOf:
                    - type: string
                      enum:
                        - claude-haiku-4.5
                        - claude-sonnet-5
                    - type: 'null'
                triageEffort:
                  anyOf:
                    - type: string
                      enum:
                        - low
                        - medium
                        - high
                        - xhigh
                    - type: 'null'
                research:
                  anyOf:
                    - type: string
                      enum:
                        - grok-4.5
                        - grok-4.3
                    - type: 'null'
                researchEffort:
                  anyOf:
                    - type: string
                      enum:
                        - low
                        - medium
                        - high
                        - xhigh
                    - type: 'null'
      responses:
        '200':
          description: Resolved model configuration after the update
        '401':
          description: Unauthorized
        '404':
          description: Organization not found
components:
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````