Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ML] ELSER v2 download in the Trained Models UI #167407

Merged
merged 25 commits into from Oct 3, 2023
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
28fbd5f
hide elser v1 from download options, fetch list of downloads
darnautov Sep 26, 2023
b3c4393
update state column
darnautov Sep 27, 2023
31126e3
mark default as recommended if platform specific is not compatible
darnautov Sep 27, 2023
6210e58
update config
darnautov Sep 27, 2023
016838a
show recommended badge
darnautov Sep 27, 2023
a7e8be2
add tooltip
darnautov Sep 27, 2023
053b824
label alignment
darnautov Sep 27, 2023
0ce469b
Merge remote-tracking branch 'origin/main' into ml-elser-2-download
darnautov Sep 28, 2023
490fde7
move badges
darnautov Sep 28, 2023
0a436df
ID column
darnautov Sep 28, 2023
49d39b6
text wrap
darnautov Sep 28, 2023
efe9c0d
update tooltip content
darnautov Sep 29, 2023
83f4d59
preserve recommended flag
darnautov Sep 29, 2023
1240d34
update available and enable checks for actions
darnautov Sep 29, 2023
106ce06
elser callout
darnautov Sep 29, 2023
4f5a274
update i18n id
darnautov Sep 29, 2023
b478b9f
show callout only if elser v1 is installed
darnautov Oct 2, 2023
43ea48f
Merge branch 'main' into ml-elser-2-download
kibanamachine Oct 2, 2023
0492e67
update tooltip content
darnautov Oct 2, 2023
a5c53e2
Merge remote-tracking branch 'origin/ml-elser-2-download' into ml-els…
darnautov Oct 2, 2023
beef167
refactor
darnautov Oct 2, 2023
6ef50c0
add dot
darnautov Oct 2, 2023
19c72b0
Merge remote-tracking branch 'origin/main' into ml-elser-2-download
darnautov Oct 2, 2023
7a49165
update functional tests
darnautov Oct 3, 2023
b535896
Merge branch 'main' into ml-elser-2-download
kibanamachine Oct 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -782,14 +782,18 @@ export const ModelsList: FC<Props> = ({
>
<FormattedMessage
id="xpack.ml.trainedModels.modelsList.newElserModelDescription"
defaultMessage="ELSER model v2 release shows faster performance and better relevance for improved information retrieval."
/>{' '}
<EuiLink href={nlpElserDocUrl} external target={'_blank'}>
<FormattedMessage
id="xpack.ml.trainedModels.modelsList.startDeployment.viewElserDocLink"
defaultMessage="View documentation"
/>
</EuiLink>
defaultMessage="A new version of ELSER that shows faster performance and improved relevance is now available. {docLink} for information on how to start using it"
peteharverson marked this conversation as resolved.
Show resolved Hide resolved
values={{
docLink: (
<EuiLink href={nlpElserDocUrl} external target={'_blank'}>
<FormattedMessage
id="xpack.ml.trainedModels.modelsList.startDeployment.viewElserDocLink"
defaultMessage="View documentation"
/>
</EuiLink>
),
}}
/>
</EuiCallOut>
<EuiSpacer size="m" />
</>
Expand Down