/** * This file was auto-generated by Fern from our API Definition. */ import * as Zep from "../../../../index.js"; /** * @example * { * instructions: [{ * name: "name", * text: "text" * }] * } */ export interface AddUserInstructionsRequest { /** Instructions to add to the user summary generation. */ instructions: Zep.UserInstruction[]; /** User IDs to add the instructions to. If empty, the instructions are added to the project-wide default. */ userIds?: string[]; }