Arize Phoenix TS
    Preparing search index...

    A session representing a group of related traces (e.g. a multi-turn conversation).

    interface Session {
        endTime: string;
        id: string;
        projectId: string;
        sessionId: string;
        startTime: string;
        traces: SessionTrace[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    endTime: string

    ISO 8601 timestamp of when the last trace in the session ended

    id: string
    projectId: string

    The ID of the project this session belongs to

    sessionId: string

    The user-provided session identifier

    startTime: string

    ISO 8601 timestamp of when the first trace in the session started

    traces: SessionTrace[]

    The traces that belong to this session