Skip to content

Commit 394e57e

Browse files
committed
Replace Coherence 24.09 references with 25.03.
1 parent 06f1453 commit 394e57e

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

docs/api_reference/ai.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
https://oss.oracle.com/licenses/upl.
55
66
=======================================
7-
coherence.ai [25.03+ server required]
7+
coherence.ai [24.09.2+ server required]
88
=======================================
99
.. toctree::
1010
:maxdepth: 4

src/coherence/ai.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)