/** * This file was auto-generated by Fern from our API Definition. */ import * as Zep from "../index.js"; export interface AddThreadMessagesRequest { /** * Optional list of role types to ignore when adding messages to graph memory. * The message itself will still be added, retained and used as context for messages * that are added to a user's graph. */ ignoreRoles?: Zep.RoleType[]; /** A list of message objects, where each message contains a role and content. */ messages: Zep.Message[]; /** Optionally return context block relevant to the most recent messages. */ returnContext?: boolean; }