From ac53e1b3b50f8cb513ac9392b3fc83c6a29f5ee0 Mon Sep 17 00:00:00 2001 From: Sung-Hyun Kang Date: Mon, 3 Feb 2025 10:53:44 -0600 Subject: [PATCH] Compile build fix --- src/Utils/arm/generatedClients/cosmos/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utils/arm/generatedClients/cosmos/types.ts b/src/Utils/arm/generatedClients/cosmos/types.ts index e93facc5e..b0c61a493 100644 --- a/src/Utils/arm/generatedClients/cosmos/types.ts +++ b/src/Utils/arm/generatedClients/cosmos/types.ts @@ -1359,7 +1359,7 @@ export interface VectorEmbedding { /* The path to the vector field in the document. */ path: string; /* Indicates the data type of vector. */ - dataType: "float32" | "uint8" | "int8"; + dataType: "float16" | "float32" | "uint8" | "int8"; /* The distance function to use for distance calculation in between vectors. */ distanceFunction: "euclidean" | "cosine" | "dotproduct";