-
Notifications
You must be signed in to change notification settings - Fork 25.6k
[ML] Custom Inference Service #125679
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
Closed
Closed
[ML] Custom Inference Service #125679
Changes from 40 commits
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
4f4c603
add inference custom model
Huaixinww e53b2e4
add unit test
Huaixinww c593b1a
spotless apply
Huaixinww 0a851c1
add custom validation
Huaixinww e240f06
xpack core spotless apply
Huaixinww 3ea3053
update commons-lang3's version
Huaixinww 83daf69
Fix compilation after rebase
davidkyle 3cb0cfb
Add missing licences and fix build checks
davidkyle a3c862c
Remove some unused code
davidkyle 2b7e6fe
Update docs/changelog/125679.yaml
davidkyle 6cc593d
Fix services it
davidkyle a4630e3
Merge branch 'main' of github.com:elastic/elasticsearch into custom-i…
jonathan-buttner 95f23f0
Contuing refactor of service settings
jonathan-buttner 014f95b
Merge branch 'main' of github.com:elastic/elasticsearch into custom-i…
jonathan-buttner 189edba
Moving classes to reflect new structure
jonathan-buttner 4fe3a1f
Refactoring service settings
jonathan-buttner 4ef37f5
Refactoring the request
jonathan-buttner 6bac18b
Adding files to handle generic error response
jonathan-buttner f644471
Making progress on tests
jonathan-buttner 11cf7cc
Merge branch 'main' of github.com:elastic/elasticsearch into custom-i…
jonathan-buttner f962d74
Adding more tests
jonathan-buttner eb63e8b
Adding more tests
jonathan-buttner adc3210
Merge branch 'main' of github.com:elastic/elasticsearch into custom-i…
jonathan-buttner c9ff298
Adding tests for remaining parsers
jonathan-buttner de83271
More tests
jonathan-buttner 34df922
Need to address quoted strings
jonathan-buttner b496732
Merge branch 'main' of github.com:elastic/elasticsearch into custom-i…
jonathan-buttner 097246b
Adding query parameter handling and tests
jonathan-buttner e7f6ac5
Adding encoding tests
jonathan-buttner a8c5241
Fixing embedding dimensions issue and test field names
jonathan-buttner 3df0f70
Merge branch 'main' of github.com:elastic/elasticsearch into custom-i…
jonathan-buttner ad55337
Fixing tests
jonathan-buttner 4714fd3
[CI] Auto commit changes from spotless
d13191c
Removing licenses
jonathan-buttner 12d46d7
Adding custom service tests
jonathan-buttner 0134346
Merge branch 'custom-inference-service' of github.com:davidkyle/elast…
jonathan-buttner e6fefc4
[CI] Auto commit changes from spotless
eef7188
Correcting tranport version number
jonathan-buttner 83837c8
Merge branch 'main' of github.com:elastic/elasticsearch into custom-i…
jonathan-buttner dc02425
Merge branch 'custom-inference-service' of github.com:davidkyle/elast…
jonathan-buttner 59f75b9
Cleaning up
jonathan-buttner 8a82163
Fixing counts
jonathan-buttner 5f13d28
Merge branch 'main' of github.com:elastic/elasticsearch into custom-i…
jonathan-buttner c211d83
Fixing rerank and chat completions
jonathan-buttner 133ef4e
Missing a few changes
jonathan-buttner 5c28ee8
Passing request to the error response handler
jonathan-buttner be84291
Merge remote-tracking branch 'origin/ml-expose-request-in-error-parse…
jonathan-buttner 8d1bd22
Adding inference id to error parser log message
jonathan-buttner a0984c7
Reverting exposing request to error parsing logic
jonathan-buttner 4242a37
Refactoring the error parsing logic
jonathan-buttner 6492cd7
Merge branch 'main' of github.com:elastic/elasticsearch into custom-i…
jonathan-buttner 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
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| pr: 125679 | ||
| summary: Custom Inference Service | ||
| area: Machine Learning | ||
| type: enhancement | ||
| issues: [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Making this available so the custom response handler can immediately return on a parse failure instead of retrying.