evalution
    Preparing search index...

    Interface ModelCatalog

    Model catalog returned by SDKAdapter.getModelCatalog. Contains the set of known providers and a curated list of models.

    interface ModelCatalog {
        groups?: Record<string, ModelGroupInfo>;
        models: readonly ModelInfo[];
        modelValueTypes?: Record<string, ModelValueType>;
    }
    Index

    Properties

    groups?: Record<string, ModelGroupInfo>

    Per-group metadata for constructing custom model PropValues. Keyed by group name.

    models: readonly ModelInfo[]

    List of known models.

    modelValueTypes?: Record<string, ModelValueType>

    Available model selection modes.

    When this is an object, the UI renders a toggle so the user can switch between them. The keys of this object are used in ModelInfo.values, and the values provide metadata for how to render each mode in the UI.