AutoBE
    Preparing search index...

    Properties for creating a new vibe coding session.

    Creates a session bound to a stored vendor configuration. The vendor's decrypted API key will be used when establishing the AI agent connection.

    interface ICreate {
        locale?: string | null;
        model: string;
        timezone?: string | null;
        title?: string | null;
        vendor_id: string & Format<"uuid">;
    }
    Index

    Properties

    locale?: string | null

    Locale for AI assistant responses.

    When omitted, falls back to the global playground configuration.

    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.

    timezone?: string | null

    IANA timezone identifier.

    When omitted, falls back to the global playground configuration.

    title?: string | null

    Optional title for this session.

    vendor_id: string & Format<"uuid">

    ID of the stored vendor configuration to use.