llama-index-vector-stores-opensearch 0.5.1__tar.gz → 0.5.2__tar.gz

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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llama-index-vector-stores-opensearch
3
- Version: 0.5.1
3
+ Version: 0.5.2
4
4
  Summary: llama-index vector_stores opensearch integration
5
5
  License: MIT
6
6
  Author: Your Name
@@ -634,7 +634,7 @@ class OpensearchVectorClient:
634
634
  ef_enabled = False
635
635
  else:
636
636
  self._os_version = self._get_opensearch_version()
637
- major, minor, patch = self.os_version.split(".")
637
+ major, minor, patch = self._os_version.split(".")
638
638
  ef_enabled = int(major) >= 2 and int(minor) >= 9
639
639
  return ef_enabled
640
640
 
@@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
27
27
  license = "MIT"
28
28
  name = "llama-index-vector-stores-opensearch"
29
29
  readme = "README.md"
30
- version = "0.5.1"
30
+ version = "0.5.2"
31
31
 
32
32
  [tool.poetry.dependencies]
33
33
  python = ">=3.9,<4.0"