We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9ec999 commit e25ebacCopy full SHA for e25ebac
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/vector/Knn.java
@@ -103,7 +103,7 @@ public class Knn extends FullTextFunction
103
description = "Finds the k nearest vectors to a query vector, as measured by a similarity metric. "
104
+ "knn function finds nearest vectors through approximate search on indexed dense_vectors or semantic_text fields.",
105
examples = { @Example(file = "knn-function", tag = "knn-function") },
106
- appliesTo = { @FunctionAppliesTo(lifeCycle = FunctionAppliesToLifecycle.PREVIEW) }
+ appliesTo = {@FunctionAppliesTo(lifeCycle = FunctionAppliesToLifecycle.PREVIEW, version = "9.2.0")}
107
)
108
public Knn(
109
Source source,
0 commit comments