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

# 피드백 생성

> call이나 객체에 피드백을 추가합니다.



## OpenAPI

````yaml /ko/weave/reference/service-api/openapi.json post /feedback/create
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security: []
paths:
  /feedback/create:
    post:
      tags:
        - Feedback
      summary: 피드백 생성
      description: call이나 객체에 피드백을 추가합니다.
      operationId: feedback_create_feedback_create_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FeedbackCreateReq'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeedbackCreateRes'
          description: 성공 응답
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: 검증 오류
      security:
        - HTTPBasic: []
        - HTTPBearer: []
components:
  schemas:
    FeedbackCreateReq:
      additionalProperties: false
      properties:
        annotation_ref:
          anyOf:
            - type: string
            - type: 'null'
          examples:
            - weave:///entity/project/object/name:digest
          title: Annotation Ref
        call_ref:
          anyOf:
            - type: string
            - type: 'null'
          examples:
            - weave:///entity/project/call/call_id
          title: Call Ref
        creator:
          anyOf:
            - type: string
            - type: 'null'
          examples:
            - Jane Smith
          title: Creator
        feedback_type:
          examples:
            - custom
          title: Feedback Type
          type: string
        id:
          anyOf:
            - type: string
            - type: 'null'
          description: 클라이언트가 이 ID를 제공하면 서버가 생성한 ID 대신 피드백 행에 이 ID가 사용됩니다.
          examples:
            - 018f1f2a-9c2b-7d3e-b5a1-8c9d2e4f6a7b
          title: Id
        payload:
          additionalProperties: true
          examples:
            - key: value
          title: Payload
          type: object
        project_id:
          examples:
            - entity/project
          title: Project Id
          type: string
        queue_id:
          anyOf:
            - type: string
            - type: 'null'
          description: >-
            이 피드백이 생성된 annotation queue ID입니다. annotation_queues.id를 참조합니다. 큐
            외부에서 피드백이 생성된 경우에는 NULL입니다.
          examples:
            - 018f1f2a-9c2b-7d3e-b5a1-8c9d2e4f6a7b
          title: Queue Id
        runnable_ref:
          anyOf:
            - type: string
            - type: 'null'
          examples:
            - weave:///entity/project/op/name:digest
          title: Runnable Ref
        scorer_rating_confidences:
          additionalProperties:
            type: number
          description: 평점 이름을 키로 하는 평점별 신뢰도(0-1)
          examples:
            - _rating_: 0.92
          title: Scorer Rating Confidences
          type: object
        scorer_rating_reasons:
          additionalProperties:
            type: string
          description: 평점 이름을 키로 하는 평점별 이유 텍스트
          examples:
            - _rating_: very confident response
          title: Scorer Rating Reasons
          type: object
        scorer_ratings:
          additionalProperties:
            type: number
          description: 평점 이름을 키로 하는 숫자 평점(0-1)
          examples:
            - _rating_: 0.87
          title: Scorer Ratings
          type: object
        scorer_tag_confidences:
          additionalProperties:
            type: number
          description: 태그 이름을 키로 하는 태그별 신뢰도(0-1)
          examples:
            - nsfw: 0.92
          title: Scorer Tag Confidences
          type: object
        scorer_tag_reasons:
          additionalProperties:
            type: string
          description: 태그 이름을 키로 하는 태그별 이유 텍스트
          examples:
            - nsfw: Contains explicit language
          title: Scorer Tag Reasons
          type: object
        scorer_tags:
          description: Scorer가 ref에 적용한 Tags
          examples:
            - - nsfw
              - high-quality
          items:
            type: string
          title: Scorer Tags
          type: array
        trigger_ref:
          anyOf:
            - type: string
            - type: 'null'
          examples:
            - weave:///entity/project/object/name:digest
          title: Trigger Ref
        wb_user_id:
          anyOf:
            - type: string
            - type: 'null'
          description: 직접 설정하지 마세요. 서버가 이 필드를 자동으로 채웁니다.
          title: Wb User Id
        weave_ref:
          examples:
            - weave:///entity/project/object/name:digest
          title: Weave Ref
          type: string
      required:
        - project_id
        - weave_ref
        - feedback_type
        - payload
      title: FeedbackCreateReq
      type: object
    FeedbackCreateRes:
      properties:
        created_at:
          format: date-time
          title: Created At
          type: string
        id:
          title: Id
          type: string
        payload:
          additionalProperties: true
          title: Payload
          type: object
        wb_user_id:
          title: Wb User Id
          type: string
      required:
        - id
        - created_at
        - wb_user_id
        - payload
      title: FeedbackCreateRes
      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

````