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
TextEmbeddingProcessor has kind "inference".
See code.
Docs uses "text_embedding" kind.
Ubuntu 22.04
N/A
The text was updated successfully, but these errors were encountered:
There's an open PR #1127 that will fix this.
Using new Processor.Builder().textEmbedding(...) will set the kind correctly:
new Processor.Builder().textEmbedding(...)
client.ingest() .putPipeline( new PutPipelineRequest.Builder().id(INGEST_PIPELINE_NAME) .description("A test_embedding ingest pipeline for the opensearch-java " + SAMPLE_NAME + " sample") .processors( new Processor.Builder().textEmbedding( new TextEmbeddingProcessor.Builder().modelId(modelId).fieldMap("text", "passageEmbedding").build() ).build() ) .build() );
This issue only affects construction via new Processor(textEmbeddingProcessor).
new Processor(textEmbeddingProcessor)
Sorry, something went wrong.
The fix for this was released in version 2.15.0
No branches or pull requests
What is the bug?
TextEmbeddingProcessor has kind "inference".
How can one reproduce the bug?
See code.
What is the expected behavior?
Docs uses "text_embedding" kind.
What is your host/environment?
Ubuntu 22.04
Do you have any screenshots?
N/A
Do you have any additional context?
N/A
The text was updated successfully, but these errors were encountered: