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

# Update evaluation toggles (requires evals:configure_live)

> Update eval toggles (§3.2). Requires evals:configure_live.



## OpenAPI

````yaml /api-reference/openapi.json patch /v1/assistants/{agent_id}/operational-settings/evaluation
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.87.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/assistants/{agent_id}/operational-settings/evaluation:
    patch:
      tags:
        - assistants
      summary: Update evaluation toggles (requires evals:configure_live)
      description: Update eval toggles (§3.2). Requires evals:configure_live.
      operationId: patchAssistantEvaluationSettings
      parameters:
        - name: agent_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Agent Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EvaluationSettingsUpdate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OperationalSettingsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    EvaluationSettingsUpdate:
      properties:
        evaluate_live:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Evaluate Live
      additionalProperties: false
      type: object
      title: EvaluationSettingsUpdate
      description: PATCH /assistants/{id}/operational-settings/evaluation (§3.2).
    OperationalSettingsResponse:
      properties:
        evaluate_live:
          type: boolean
          title: Evaluate Live
          default: false
        knowledge_gap_analysis_enabled:
          type: boolean
          title: Knowledge Gap Analysis Enabled
          default: true
        release_suite_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Release Suite Id
        release_gate_mode:
          type: string
          title: Release Gate Mode
          default: 'off'
        release_gate_max_failures:
          type: integer
          title: Release Gate Max Failures
          default: 0
      type: object
      title: OperationalSettingsResponse
      description: GET /assistants/{id}/operational-settings (§3.2).
    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
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````