SAP AI SDK for JavaScript - v2.13.0
    Preparing search index...

    Type Alias AiExecutable

    AiExecutable: {
        createdAt: string;
        deployable: boolean;
        description?: string;
        id: AiExecutableId;
        inputArtifacts?: AiExecutableArtifactList;
        labels?: AiLabelList;
        modifiedAt: string;
        name: string;
        outputArtifacts?: AiExecutableArtifactList;
        parameters?: AiExecutableParameterList;
        scenarioId?: AiScenarioId;
        versionId: AiVersionId;
    } & Record<string, any>

    An ML executable consists of a set of ML tasks, flows between tasks, dependencies between tasks, models (or model versions?).

    Type Declaration