AutoBE
    Preparing search index...

    Interface IAutoBePlaygroundSession

    Interface representing a vibe coding session with full detail.

    This interface extends the summary with complete conversation histories and event snapshots, providing all the data needed to reconstruct or review an entire vibe coding session from start to finish.

    Samchon

    interface IAutoBePlaygroundSession {
        completed_at: string & Format<"date-time"> | null;
        created_at: string & Format<"date-time">;
        histories: AutoBeHistory[];
        id: string & Format<"uuid">;
        locale: string;
        model: string;
        phase: AutoBePhase | null;
        snapshots: AutoBeEventSnapshot<AutoBeEventOfSerializable>[];
        timezone: string;
        title: string | null;
        token_usage: IAutoBeTokenUsageJson;
        vendor: IAutoBePlaygroundVendor;
    }

    Hierarchy (View Summary)

    Index

    Properties

    completed_at: string & Format<"date-time"> | null

    Timestamp when this session was completed, or null if still active.

    created_at: string & Format<"date-time">

    Timestamp when this session was created.

    histories: AutoBeHistory[]

    Complete chronological history of user messages and agent responses.

    id: string & Format<"uuid">

    Unique identifier for this session.

    locale: string

    Locale used for AI assistant responses (e.g. "en-US", "ko-KR").

    model: string

    AI model identifier specifying which model to use.

    The exact model name or identifier for the AI provider, such as "gpt-4.1", "claude-sonnet-4-20250514", "qwen3-235b-a22b", etc.

    phase: AutoBePhase | null

    Current pipeline phase, or null if not yet started.

    snapshots: AutoBeEventSnapshot<AutoBeEventOfSerializable>[]

    All event snapshots captured during the session.

    timezone: string

    IANA timezone identifier (e.g. "Asia/Seoul", "America/New_York").

    title: string | null

    Optional user-provided title for this session.

    Accumulated token usage for cost tracking.

    Vendor configuration used for this session.