You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Backport
This will backport the following commits from `main` to `9.1`:
- [Rename ELSER defaults
(#225852)](#225852)
<!--- Backport version: 9.6.6 -->
### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sorenlouv/backport)
<!--BACKPORT [{"author":{"name":"Tim
Grein","email":"[email protected]"},"sourceCommit":{"committedDate":"2025-07-03T15:21:56Z","message":"Rename
ELSER defaults
(#225852)","sha":"6501ac0e5327dd546e7d00cac6c19f2099a55e77","branchLabelMapping":{"^v9.2.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","backport:prev-major","Team:Obs
AI
Assistant","ci:project-deploy-observability","v9.1.0","v8.19.0","v9.2.0"],"title":"Rename
ELSER
defaults","number":225852,"url":"https://github.com/elastic/kibana/pull/225852","mergeCommit":{"message":"Rename
ELSER defaults
(#225852)","sha":"6501ac0e5327dd546e7d00cac6c19f2099a55e77"}},"sourceBranch":"main","suggestedTargetBranches":["9.1","8.19"],"targetPullRequestStates":[{"branch":"9.1","label":"v9.1.0","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"8.19","label":"v8.19.0","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v9.2.0","branchLabelMappingKey":"^v9.2.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/225852","number":225852,"mergeCommit":{"message":"Rename
ELSER defaults
(#225852)","sha":"6501ac0e5327dd546e7d00cac6c19f2099a55e77"}}]}]
BACKPORT-->
Co-authored-by: Tim Grein <[email protected]>
Copy file name to clipboardExpand all lines: x-pack/solutions/search/plugins/search_inference_endpoints/public/components/all_inference_endpoints/tabular_page.test.tsx
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -89,19 +89,19 @@ const inferenceEndpoints = [
89
89
},
90
90
},
91
91
{
92
-
inference_id: '.elser-v2-elastic',
92
+
inference_id: '.elser-2-elastic',
93
93
task_type: 'sparse_embedding',
94
94
service: 'elastic',
95
95
service_settings: {
96
-
model_id: 'elser-v2',
96
+
model_id: 'elser_model_2',
97
97
},
98
98
},
99
99
{
100
100
inference_id: 'custom-inference-id',
101
101
task_type: 'sparse_embedding',
102
102
service: 'elastic',
103
103
service_settings: {
104
-
model_id: 'elser-v2',
104
+
model_id: 'elser_model_2',
105
105
},
106
106
},
107
107
]asInferenceAPIConfigResponse[];
@@ -117,8 +117,8 @@ describe('When the tabular page is loaded', () => {
0 commit comments