AutoBE
    Preparing search index...

    Summary view of a vibe coding session.

    Contains essential metadata and progress information without the full conversation histories or event snapshots. Used for listing sessions and displaying overview information.

    interface ISummary {
        completed_at: string & Format<"date-time"> | null;
        created_at: string & Format<"date-time">;
        id: string & Format<"uuid">;
        locale: string;
        model: string;
        phase: AutoBePhase | null;
        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.

    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.

    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.