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
NeuralQueryEnricher search processor is not working with NestedQueries
how to reproduce:
PUT /_search/pipeline/test_pipeline { "request_processors": [ { "neural_query_enricher" : { "default_model_id": "u5j0qYoBMtvQlfhaxOsa", "neural_field_default_id": { "embedding_field.knn": "uZj0qYoBMtvQlfhaYeud" } } } ] } GET testindex/_search?search_pipeline=test_pipeline { "query": { "nested": { "score_mode": "max", "path": "passage_chunk_embedding", "query": { "neural": { "embedding_field.knn": { "query_text": "document" } } } } } }
This should work but instead throws:
{ "error": { "root_cause": [ { "type": "null_pointer_exception", "reason": "modelId is marked non-null but is null" } ], "type": "null_pointer_exception", "reason": "modelId is marked non-null but is null" }, "status": 500 }
The text was updated successfully, but these errors were encountered:
@zhichao-aws where are we on fixing the bug?
Sorry, something went wrong.
it's complete
zhichao-aws
No branches or pull requests
NeuralQueryEnricher search processor is not working with NestedQueries
how to reproduce:
This should work but instead throws:
The text was updated successfully, but these errors were encountered: