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

# 평가 run 완료

> 평가 run을 종료합니다.



## OpenAPI

````yaml /ko/weave/reference/service-api/openapi.json post /v2/{entity}/{project}/evaluation_runs/{evaluation_run_id}/finish
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security: []
paths:
  /v2/{entity}/{project}/evaluation_runs/{evaluation_run_id}/finish:
    post:
      tags:
        - Evaluation Runs
      summary: 평가 run 완료
      description: 평가 run을 종료합니다.
      operationId: >-
        evaluation_run_finish_v2__entity___project__evaluation_runs__evaluation_run_id__finish_post
      parameters:
        - in: path
          name: entity
          required: true
          schema:
            title: Entity
            type: string
        - in: path
          name: project
          required: true
          schema:
            title: Project
            type: string
        - in: path
          name: evaluation_run_id
          required: true
          schema:
            title: Evaluation Run Id
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EvaluationRunFinishBody'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EvaluationRunFinishRes'
          description: 성공적인 응답
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: 검증 오류
      security:
        - HTTPBasic: []
        - HTTPBearer: []
components:
  schemas:
    EvaluationRunFinishBody:
      description: >-
        REST API를 통해 evaluation run을 완료하기 위한 요청 본문입니다.


        이 모델은 project_id와 evaluation_run_id를 제외합니다. RESTful 엔드포인트에서는 이 값들이 URL
        경로에서 제공되기 때문입니다.
      properties:
        summary:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          description: evaluation run에 대한 선택적 summary 딕셔너리
          title: Summary
      title: EvaluationRunFinishBody
      type: object
    EvaluationRunFinishRes:
      properties:
        success:
          description: evaluation run이 성공적으로 완료되었는지 여부
          title: Success
          type: boolean
      required:
        - success
      title: EvaluationRunFinishRes
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    HTTPBasic:
      scheme: basic
      type: http
    HTTPBearer:
      scheme: bearer
      type: http

````