We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Unsetting or explicitly setting a value to null does not clear the setting: https://github.com/elastic/elasticsearch/blob/main/x-pack/plugin/inference/src/main/java/org/elasticsearch/xpack/inference/services/cohere/embeddings/CohereEmbeddingsTaskSettings.java#L116
null
All of our updatedTaskSettings should check if a user is explicitly setting a field to null and, if so, clearing the field.
If a user creates an endpoint with input_type set:
input_type
"task_settings": { "input_type": "search" }
An update like this should clear the input_type setting:
"task_settings": { "input_type": null }
Whereas an update like this should not:
"task_settings": { }
Workaround is to delete and recreate the endpoint with the desired task_settings
task_settings
The text was updated successfully, but these errors were encountered:
Pinging @elastic/ml-core (Team:ML)
Sorry, something went wrong.
No branches or pull requests
Unsetting or explicitly setting a value to
null
does not clear the setting:https://github.com/elastic/elasticsearch/blob/main/x-pack/plugin/inference/src/main/java/org/elasticsearch/xpack/inference/services/cohere/embeddings/CohereEmbeddingsTaskSettings.java#L116
All of our updatedTaskSettings should check if a user is explicitly setting a field to
null
and, if so, clearing the field.If a user creates an endpoint with
input_type
set:An update like this should clear the
input_type
setting:Whereas an update like this should not:
Workaround is to delete and recreate the endpoint with the desired
task_settings
The text was updated successfully, but these errors were encountered: