/** * 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 AddCustomInstructionsRequest { /** Graph IDs to add the instructions to. If empty, the instructions are added to the project-wide default. */ graphIds?: string[]; /** Instructions to add to the graph. */ instructions: Zep.CustomInstruction[]; /** User IDs to add the instructions to. If empty, the instructions are added to the project-wide default. */ userIds?: string[]; }