llama-index-vector-stores-opensearch 0.6.1__py3-none-any.whl → 0.6.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of llama-index-vector-stores-opensearch might be problematic. Click here for more details.
- llama_index/vector_stores/opensearch/base.py +1 -1
- {llama_index_vector_stores_opensearch-0.6.1.dist-info → llama_index_vector_stores_opensearch-0.6.2.dist-info}/METADATA +1 -1
- llama_index_vector_stores_opensearch-0.6.2.dist-info/RECORD +7 -0
- llama_index_vector_stores_opensearch-0.6.1.dist-info/RECORD +0 -7
- {llama_index_vector_stores_opensearch-0.6.1.dist-info → llama_index_vector_stores_opensearch-0.6.2.dist-info}/WHEEL +0 -0
- {llama_index_vector_stores_opensearch-0.6.1.dist-info → llama_index_vector_stores_opensearch-0.6.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -672,7 +672,7 @@ class OpensearchVectorClient:
|
|
|
672
672
|
else:
|
|
673
673
|
self._os_version = self._get_opensearch_version()
|
|
674
674
|
major, minor, patch = self._os_version.split(".")
|
|
675
|
-
ef_enabled = int(major)
|
|
675
|
+
ef_enabled = int(major) > 2 or (int(major) == 2 and int(minor) >= 9)
|
|
676
676
|
return ef_enabled
|
|
677
677
|
|
|
678
678
|
def index_results(self, nodes: List[BaseNode], **kwargs: Any) -> List[str]:
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
llama_index/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
llama_index/vector_stores/opensearch/__init__.py,sha256=U1_XAkZb6zcskOk4s10NB8Tjs9AZRGdRQLzOGpbWdBA,176
|
|
3
|
+
llama_index/vector_stores/opensearch/base.py,sha256=FaWxpRBJ7lQk2PDQ7-siiEqzXypxqhjyLacGI5X4Cq0,40403
|
|
4
|
+
llama_index_vector_stores_opensearch-0.6.2.dist-info/METADATA,sha256=3QkzrUbMH8OzNHvcpxBkgIVYxFjsC2MRZT6com1NGSc,438
|
|
5
|
+
llama_index_vector_stores_opensearch-0.6.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
6
|
+
llama_index_vector_stores_opensearch-0.6.2.dist-info/licenses/LICENSE,sha256=JPQLUZD9rKvCTdu192Nk0V5PAwklIg6jANii3UmTyMs,1065
|
|
7
|
+
llama_index_vector_stores_opensearch-0.6.2.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
llama_index/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
llama_index/vector_stores/opensearch/__init__.py,sha256=U1_XAkZb6zcskOk4s10NB8Tjs9AZRGdRQLzOGpbWdBA,176
|
|
3
|
-
llama_index/vector_stores/opensearch/base.py,sha256=qlHnjaxqrETZKIq54NhOxot3iF3oq13BJX1pLWm_gcg,40383
|
|
4
|
-
llama_index_vector_stores_opensearch-0.6.1.dist-info/METADATA,sha256=thvi0QzgRbrHBD2debLZdvjwUVD-LhIaP02VaRiH5KQ,438
|
|
5
|
-
llama_index_vector_stores_opensearch-0.6.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
6
|
-
llama_index_vector_stores_opensearch-0.6.1.dist-info/licenses/LICENSE,sha256=JPQLUZD9rKvCTdu192Nk0V5PAwklIg6jANii3UmTyMs,1065
|
|
7
|
-
llama_index_vector_stores_opensearch-0.6.1.dist-info/RECORD,,
|
|
File without changes
|