/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; export interface GenerateRequest { /** Key/value pairs for each template variable defined in the deployment's prompt. */ inputValues: Record; /** Optionally provide a list of chat messages that'll be used in place of the special chat_history variable, if included in the prompt. */ chatHistory?: Vellum.ChatMessageRequest[]; /** Optionally include a unique identifier for each generation, as represented outside of Vellum. Note that this should generally be a list of length one. */ externalIds?: string[] | null; }