/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../../index"; /** * @example * { * actuals: [{}, {}] * } */ export interface SubmitCompletionActualsRequest { /** The ID of the deployment. Must provide either this or deployment_name. */ deploymentId?: string | null; /** The name of the deployment. Must provide either this or deployment_id. */ deploymentName?: string | null; /** Feedback regarding the quality of previously generated completions */ actuals: Vellum.SubmitCompletionActualRequest[]; }