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

    Type Alias AiArtifact

    AiArtifact: {
        configurationId?: AiConfigurationId;
        createdAt: string;
        description?: AiArtifactDescription;
        executionId?: AiExecutionId;
        id: AiArtifactId;
        kind: "model" | "dataset" | "resultset" | "other";
        labels?: AiLabelList;
        modifiedAt: string;
        name: AiArtifactName;
        scenario?: AiScenario | any | null;
        scenarioId: AiScenarioId;
        url: AiArtifactUrl;
    } & Record<string, any>

    Base data of the artifact; this is the data that can be provided when the artifact is created; name and kind are required because they constitute important semantic filtering criteria for use in training / inference executables (name is a semantic handle of the artifact within a scenario and kind specifies the type of usage, e.g. you would only want to allow models in the model operator).

    Type Declaration