/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; /** * A chat history output from a Workflow execution. */ export interface WorkflowOutputChatHistory { id: string; /** The output's name, as defined in the workflow */ name: string; type: "CHAT_HISTORY"; value?: Vellum.ChatMessage[] | null; }