/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; /** * The input for a chat history variable in a Workflow. */ export interface WorkflowRequestChatHistoryInputRequest { /** The variable's name, as defined in the Workflow. */ name: string; type: "CHAT_HISTORY"; value: Vellum.ChatMessageRequest[]; }