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

# UpdateEvalSuiteAPI mirrors erdo_update_eval_suite. Only provided fields change.




## OpenAPI

````yaml /api/openapi.json put /v1/evals/suites/{suiteSlug}
openapi: 3.0.0
info:
  title: Erdo API
  description: >-
    Erdo's REST API: query and write datasets, run agents, manage threads,
    integrations, pages, evals, workstreams, and experiments. Authenticate with
    a Bearer API key (erdo_api_...) or scoped token (erdo_token_...).
  version: '2026-07-25'
servers:
  - url: https://api.erdo.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/evals/suites/{suiteSlug}:
    put:
      summary: >
        UpdateEvalSuiteAPI mirrors erdo_update_eval_suite. Only provided fields
        change.
      operationId: PUT:mcp.UpdateEvalSuiteAPI
      parameters:
        - allowEmptyValue: true
          explode: false
          in: path
          name: suiteSlug
          required: true
          schema:
            type: string
          style: simple
      requestBody:
        content:
          application/json:
            schema:
              properties:
                agent_key:
                  type: string
                cron_enabled:
                  type: boolean
                description:
                  type: string
                evaluate_artifact:
                  type: boolean
                judge_model:
                  type: string
                name:
                  type: string
                pass_threshold:
                  type: number
                suite_slug:
                  type: string
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  suite:
                    $ref: '#/components/schemas/types.EvalSuite'
                type: object
          description: Success response
        default:
          $ref: '#/components/responses/APIError'
components:
  schemas:
    types.EvalSuite:
      properties:
        agent_key:
          type: string
        created_at:
          format: date-time
          type: string
        created_by_user_id:
          format: uuid
          type: string
        cron_enabled:
          description: >
            suites build a full page + render-judge per case, so they default to
            on-demand.
          title: >
            CronEnabled: the daily all-orgs cron skips suites with this false.
            Artifact
          type: boolean
        description:
          type: string
        evaluate_artifact:
          description: >
            built during the run and judges the rendered page (screenshots +
            interaction) rather than the agent's text output. The rubric
            criteria carry the lenses.
          title: >
            EvaluateArtifact: when true, the runner resolves the HTML artifact
            the agent
          type: boolean
        id:
          format: uuid
          type: string
        judge_model:
          type: string
        name:
          type: string
        organization_id:
          format: uuid
          type: string
        pass_threshold:
          type: number
        slug:
          description: |
            the suite (never the UUID). Derived from name at create time.
          title: >
            Slug is the stable, human-readable identifier MCP/CLI tools use to
            reference
          type: string
        updated_at:
          format: date-time
          type: string
      title: |
        EvalSuite groups cases that target a single agent.
      type: object
  responses:
    APIError:
      content:
        application/json:
          schema:
            externalDocs:
              url: https://pkg.go.dev/encore.dev/beta/errs#Error
            properties:
              code:
                description: Error code
                example: not_found
                externalDocs:
                  url: https://pkg.go.dev/encore.dev/beta/errs#ErrCode
                type: string
              details:
                description: Error details
                type: object
              message:
                description: Error message
                type: string
            title: APIError
            type: object
      description: Error response
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: An Erdo API key (erdo_api_...) or scoped token (erdo_token_...).

````