> ## 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.

# 호출 점수



## OpenAPI

````yaml /ko/weave/reference/service-api/openapi.json post /calls/score
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security: []
paths:
  /calls/score:
    post:
      tags:
        - Scores
      summary: 호출 점수
      operationId: calls_score_calls_score_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CallsScoreReq'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallsScoreRes'
          description: 성공 응답
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: 검증 오류
      security:
        - HTTPBasic: []
        - HTTPBearer: []
components:
  schemas:
    CallsScoreReq:
      additionalProperties: false
      description: >-
        호출 목록에 대한 스코어링 작업을 큐에 추가하도록 요청합니다.


        스코어링은 call_scoring_worker가 비동기적으로 수행하며, 이 워커는 Kafka에서 메시지를 가져와 각
        call_id에 각 scorer_ref를 적용합니다.
      properties:
        call_ids:
          description: 스코어링할 호출 ID 목록
          items:
            type: string
          title: Call Ids
          type: array
        project_id:
          title: Project Id
          type: string
        scorer_refs:
          description: 적용할 scorer ref 목록
          items:
            type: string
          title: Scorer Refs
          type: array
        wb_user_id:
          anyOf:
            - type: string
            - type: 'null'
          description: 직접 설정하지 마세요. 서버가 이 필드를 자동으로 채웁니다.
          title: Wb User Id
      required:
        - project_id
        - call_ids
        - scorer_refs
      title: CallsScoreReq
      type: object
    CallsScoreRes:
      description: >-
        calls_score에 대한 빈 응답입니다.


        이 인터페이스 전반에서 사용하는 규칙을 따르고, 나중에 호환성이 깨지는 변경 없이 필드를 추가할 수 있도록 None을 반환하는
        대신 모델로 정의했습니다.
      properties: {}
      title: CallsScoreRes
      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

````