AutoBE
    Preparing search index...

    Interface IAutoBePlaygroundVendorModel

    Interface representing a model entry registered under a vendor.

    Tracks which AI models have been registered for use with a particular vendor configuration. When creating a session, the user specifies a model string directly; this entity exists to maintain a managed list of models per vendor for UI convenience (e.g., dropdowns, history).

    Samchon

    interface IAutoBePlaygroundVendorModel {
        created_at: string & Format<"date-time">;
        id: string & Format<"uuid">;
        model: string;
    }
    Index

    Properties

    Properties

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

    Timestamp when this model was registered.

    id: string & Format<"uuid">

    Unique identifier for this vendor-model entry.

    model: string

    AI model identifier.

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