Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
14a5383
Inference changes
jonathan-buttner May 8, 2025
eba5fce
Custom service fixes
jonathan-buttner May 8, 2025
9af98be
Update docs/changelog/127939.yaml
jonathan-buttner May 8, 2025
cb09e30
Cleaning up from failed merge
jonathan-buttner May 8, 2025
c8642cd
Merge branch 'custom-inference-service-jon' of github.com:jonathan-bu…
jonathan-buttner May 8, 2025
e7c62d8
Fixing changelog
jonathan-buttner May 8, 2025
6bb2a95
[CI] Auto commit changes from spotless
May 8, 2025
67329e2
Fixing transport version
jonathan-buttner May 20, 2025
dd14970
Merge branch 'custom-inference-service-jon' of github.com:jonathan-bu…
jonathan-buttner May 20, 2025
6be22b5
Fixing test
jonathan-buttner May 20, 2025
da1c71f
Fixing transport version
jonathan-buttner May 20, 2025
84c16ce
Adding feature flag
jonathan-buttner May 29, 2025
7eb72ff
Merge branch 'main' of github.com:elastic/elasticsearch into custom-i…
jonathan-buttner May 29, 2025
280d4dd
[CI] Auto commit changes from spotless
May 29, 2025
d1137b6
Fixing test issue
jonathan-buttner May 29, 2025
e955bf4
Merge branch 'main' of github.com:elastic/elasticsearch into custom-i…
jonathan-buttner May 29, 2025
27fdfa8
Merge branch 'custom-inference-service-jon' of github.com:jonathan-bu…
jonathan-buttner May 29, 2025
7d2c112
[CI] Auto commit changes from spotless
May 29, 2025
63fdaed
Fixing the expected values
jonathan-buttner May 29, 2025
95f05d2
Merge branch 'main' of github.com:elastic/elasticsearch into custom-i…
jonathan-buttner May 29, 2025
e085040
Merge branch 'custom-inference-service-jon' of github.com:jonathan-bu…
jonathan-buttner May 29, 2025
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing the expected values
  • Loading branch information
jonathan-buttner committed May 29, 2025
commit 63fdaed95033c75ae3aa81f4bf11c514b205469c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public void testGetServicesWithTextEmbeddingTaskType() throws IOException {

public void testGetServicesWithRerankTaskType() throws IOException {
List<Object> services = getServices(TaskType.RERANK);
assertThat(services.size(), equalTo(8));
assertThat(services.size(), equalTo(9));

var providers = providers(services);

Expand All @@ -127,7 +127,7 @@ public void testGetServicesWithRerankTaskType() throws IOException {

public void testGetServicesWithCompletionTaskType() throws IOException {
List<Object> services = getServices(TaskType.COMPLETION);
assertThat(services.size(), equalTo(12));
assertThat(services.size(), equalTo(13));

var providers = providers(services);

Expand Down