/** * This file was auto-generated by Fern from our API Definition. */ import * as Zep from "../../../../index.js"; /** * @example * { * episodes: [{ * data: "data", * type: "text" * }] * } */ export interface AddDataBatchRequest { episodes: Zep.EpisodeData[]; /** graph_id is the ID of the graph to which the data will be added. If adding to the user graph, please use user_id field instead. */ graphId?: string; /** User ID is the ID of the user to which the data will be added. If not adding to a user graph, please use graph_id field instead. */ userId?: string; }