Model name @if ( onboardingModelForm.controls["name"].errors?.["pattern"] && onboardingModelForm.controls["name"].touched ) { Name must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character } @if ( onboardingModelForm.controls["name"].errors?.["required"] && onboardingModelForm.controls["name"].touched ) { Name is required } @if ( onboardingModelForm.get("name")?.errors?.["nameTaken"] && onboardingModelForm.controls["name"].touched ) { Name already exists: an incremented version will be created within the existing model. }
Docker URI Dockerhub image example: docker.io/myimage:latest General public registry image example: cicd.ai4eu-dev.eu:7444/myimage:v1 @if ( onboardingModelForm.controls["dockerURI"].errors?.[ "required" ] && onboardingModelForm.controls["dockerURI"].touched ) { Docker URI is required }
Upload Protobuf File
Supported files type: .proto
@if (message !== "") { .proto file is required. }
Add License Profile
@if ( onboardingModelForm.controls["addLicenseProfile"].value === true ) {
}