Skip to content

Commit

Permalink
Update alert text when disabling multi-serving platform or single-ser…
Browse files Browse the repository at this point in the history
…ving platform
  • Loading branch information
DaoDaoNoCode committed Oct 10, 2024
1 parent a3c2b58 commit 3cae82c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ const ModelServingPlatformSettings: React.FC<ModelServingPlatformSettingsProps>
setAlert({
variant: AlertVariant.info,
message:
'Disabling multi-model serving means that models in new projects or existing projects with no currently deployed models will be deployed from their own model server. Existing projects with currently deployed models will continue to use the serving platform selected for that project.',
'Projects with models already deployed will be unaffected by deselecting multi-model serving.',
});
} else if (initialValue.kServe && !enabledPlatforms.kServe) {
setAlert({
variant: AlertVariant.info,
message:
'Disabling single-model serving means that models in new projects or existing projects with no currently deployed models will be deployed from a shared model server. Existing projects with currently deployed models will continue to use the serving platform selected for that project.',
'Projects with models already deployed will be unaffected by deselecting single-model serving.',
});
} else {
setAlert(undefined);
Expand Down

0 comments on commit 3cae82c

Please sign in to comment.