Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/changelog/138644.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 138644
summary: "Fix: add missing inference feature"
area: Search
type: bug
issues: []
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ public class InferenceFeatures implements FeatureSpecification {
private static final NodeFeature SEMANTIC_TEXT_HIGHLIGHTER_DISKBBQ_SIMILARITY_SUPPORT = new NodeFeature(
"semantic_text.highlighter.bbq_and_similarity_support"
);
private static final NodeFeature SEMANTIC_TEXT_HIGHLIGHTER_VECTOR_SIMILARITY_SUPPORT = new NodeFeature(
"semantic_text.highlighter.vector_similarity_support"
);
private static final NodeFeature TEST_RERANKING_SERVICE_PARSE_TEXT_AS_SCORE = new NodeFeature(
"test_reranking_service.parse_text_as_score"
);
Expand Down Expand Up @@ -102,6 +105,7 @@ public Set<NodeFeature> getTestFeatures() {
SEMANTIC_TEXT_FIELDS_CHUNKS_FORMAT,
SEMANTIC_TEXT_UPDATABLE_INFERENCE_ID,
SEMANTIC_TEXT_HIGHLIGHTER_DISKBBQ_SIMILARITY_SUPPORT,
SEMANTIC_TEXT_HIGHLIGHTER_VECTOR_SIMILARITY_SUPPORT,
SemanticQueryBuilder.SEMANTIC_QUERY_MULTIPLE_INFERENCE_IDS,
SemanticQueryBuilder.SEMANTIC_QUERY_FILTER_FIELD_CAPS_FIX,
InterceptedInferenceQueryBuilder.NEW_SEMANTIC_QUERY_INTERCEPTORS,
Expand Down