@@ -27,7 +27,7 @@ class Vector(ABC):
2727 """
2828 Base class that represents a Vector.
2929
30- **NOTE:** This requires using Coherence CE 25.03 + on the server side.
30+ **NOTE:** This requires using Coherence CE 24.09.2 + on the server side.
3131 """
3232
3333 def __init__ (self ) -> None :
@@ -42,7 +42,7 @@ class BitVector(Vector):
4242 """
4343 Class that represents a Vector of Bits.
4444
45- **NOTE:** This requires using Coherence CE 25.03 + on the server side.
45+ **NOTE:** This requires using Coherence CE 24.09.2 + on the server side.
4646 """
4747
4848 def __init__ (
@@ -78,7 +78,7 @@ class ByteVector(Vector):
7878 """
7979 Class that represents Vector of bytes.
8080
81- **NOTE:** This requires using Coherence CE 25.03 + on the server side.
81+ **NOTE:** This requires using Coherence CE 24.09.2 + on the server side.
8282 """
8383
8484 def __init__ (self , byte_array : bytes ):
@@ -96,7 +96,7 @@ class FloatVector(Vector):
9696 """
9797 Class that represents Vector of floats.
9898
99- **NOTE:** This requires using Coherence CE 25.03 + on the server side.
99+ **NOTE:** This requires using Coherence CE 24.09.2 + on the server side.
100100 """
101101
102102 def __init__ (self , float_array : List [float ]):
@@ -120,7 +120,7 @@ class DocumentChunk(AbstractEvolvable):
120120 """
121121 Class that represents a chunk of text extracted from a document.
122122
123- **NOTE:** This requires using Coherence CE 25.03 + on the server side.
123+ **NOTE:** This requires using Coherence CE 24.09.2 + on the server side.
124124 """
125125
126126 def __init__ (
@@ -194,7 +194,7 @@ class DistanceAlgorithm(ABC):
194194 """
195195 Base class that represents algorithm that can calculate distance to a given vector.
196196
197- **NOTE:** This requires using Coherence CE 25.03 + on the server side.
197+ **NOTE:** This requires using Coherence CE 24.09.2 + on the server side.
198198 """
199199
200200 def __init__ (self ) -> None :
@@ -211,7 +211,7 @@ class CosineDistance(DistanceAlgorithm):
211211 roughly the same direction. It is often used to measure document similarity
212212 in text analysis.
213213
214- **NOTE:** This requires using Coherence CE 25.03 + on the server side.
214+ **NOTE:** This requires using Coherence CE 24.09.2 + on the server side.
215215 """
216216
217217 def __init__ (self ) -> None :
@@ -224,7 +224,7 @@ class InnerProductDistance(DistanceAlgorithm):
224224 Represents a DistanceAlgorithm that performs inner product distance
225225 calculation between two vectors.
226226
227- **NOTE:** This requires using Coherence CE 25.03 + on the server side.
227+ **NOTE:** This requires using Coherence CE 24.09.2 + on the server side.
228228 """
229229
230230 def __init__ (self ) -> None :
@@ -237,7 +237,7 @@ class L2SquaredDistance(DistanceAlgorithm):
237237 Represents a DistanceAlgorithm that performs an L2 squared distance
238238 calculation between two vectors.
239239
240- **NOTE:** This requires using Coherence CE 25.03 + on the server side.
240+ **NOTE:** This requires using Coherence CE 24.09.2 + on the server side.
241241 """
242242
243243 def __init__ (self ) -> None :
@@ -249,7 +249,7 @@ class SimilaritySearch(EntryAggregator):
249249 """
250250 This class represents an aggregator to execute a similarity query.
251251
252- **NOTE:** This requires using Coherence CE 25.03 + on the server side.
252+ **NOTE:** This requires using Coherence CE 24.09.2 + on the server side.
253253 """
254254
255255 def __init__ (
@@ -286,7 +286,7 @@ class BaseQueryResult(ABC):
286286 """
287287 A base class for QueryResult implementation.
288288
289- **NOTE:** This requires using Coherence CE 25.03 + on the server side.
289+ **NOTE:** This requires using Coherence CE 24.09.2 + on the server side.
290290 """
291291
292292 def __init__ (self , result : float , key : K , value : V ) -> None :
@@ -300,7 +300,7 @@ class QueryResult(BaseQueryResult):
300300 """
301301 QueryResult class.
302302
303- **NOTE:** This requires using Coherence CE 25.03 + on the server side.
303+ **NOTE:** This requires using Coherence CE 24.09.2 + on the server side.
304304 """
305305
306306 def __init__ (self , result : float , key : K , value : V ) -> None :
@@ -322,7 +322,7 @@ class BinaryQuantIndex(AbstractEvolvable):
322322 """
323323 This class represents a custom index using binary quantization of vectors.
324324
325- **NOTE:** This requires using Coherence CE 25.03 + on the server side.
325+ **NOTE:** This requires using Coherence CE 24.09.2 + on the server side.
326326 """
327327
328328 def __init__ (self , extractor : Union [ValueExtractor [T , E ], str ], over_sampling_factor : int = 3 ) -> None :
0 commit comments