RxInfer Client - v1.3.0
    Preparing search index...

    Type Alias AvailableModel

    type AvailableModel = {
        details: {
            name?: string;
            description?: string;
            author?: string;
            roles?: string[];
        };
        config: { [key: string]: unknown };
    }
    Index

    Properties

    Properties

    details: {
        name?: string;
        description?: string;
        author?: string;
        roles?: string[];
    }

    Primary model details. Note that these are also included in the config object.

    Type declaration

    • Optionalname?: string

      Name of the model (usually with the version identifier, e.g. "BetaBernoulli-v1")

    • Optionaldescription?: string

      Brief description of the model

    • Optionalauthor?: string

      Author of the model

    • Optionalroles?: string[]

      List of roles that can access the model

    config: { [key: string]: unknown }

    The entire model configuration as in the config.yaml file. May include arbitrary fields, which are not part of the public interface. Note that this information also includes the properties from the details object.