/** * This file was auto-generated by Fern from our API Definition. */ import * as Zep from "../../../../index"; /** * @example * { * sessionId: "session_id" * } */ export interface CreateSessionRequest { /** Optional instruction to use for fact rating. */ factRatingInstruction?: Zep.FactRatingInstruction; /** The metadata associated with the session. */ metadata?: Record; /** The unique identifier of the session. */ sessionId: string; /** The unique identifier of the user associated with the session */ userId?: string; }