From 44fd54f779884be91e5ef47c8f9843019533c422 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Stra=C3=9Fer?= Date: Thu, 21 Sep 2023 07:50:49 +0200 Subject: [PATCH] changing type of the similarity field to float --- specification/_types/Knn.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/_types/Knn.ts b/specification/_types/Knn.ts index 6d8e450941..ea98cad0eb 100644 --- a/specification/_types/Knn.ts +++ b/specification/_types/Knn.ts @@ -39,7 +39,7 @@ export interface KnnQuery { /** Filters for the kNN search query */ filter?: QueryContainer | QueryContainer[] /** The minimum similarity for a vector to be considered a match */ - similarity?: double + similarity?: float } /** @variants container */