From 73b79b0b09d53175093f447b8c7a8edf2102d350 Mon Sep 17 00:00:00 2001 From: Logan Date: Fri, 10 Jan 2025 22:01:57 -0600 Subject: [PATCH] add test, fix missing method (#17485) --- .../llama_index/vector_stores/neptune/base.py | 4 ++++ .../llama-index-vector-stores-neptune/pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/llama-index-integrations/vector_stores/llama-index-vector-stores-neptune/llama_index/vector_stores/neptune/base.py b/llama-index-integrations/vector_stores/llama-index-vector-stores-neptune/llama_index/vector_stores/neptune/base.py index 6ee4c2d517ac0..d1b2529cd12a5 100644 --- a/llama-index-integrations/vector_stores/llama-index-vector-stores-neptune/llama_index/vector_stores/neptune/base.py +++ b/llama-index-integrations/vector_stores/llama-index-vector-stores-neptune/llama_index/vector_stores/neptune/base.py @@ -137,6 +137,10 @@ def _verify_vectorIndex(self) -> None: def class_name(cls) -> str: return "NeptuneAnalyticsVectorStore" + @property + def client(self) -> Any: + return self._client + def database_query( self, query: str, params: Optional[dict] = None ) -> List[Dict[str, Any]]: diff --git a/llama-index-integrations/vector_stores/llama-index-vector-stores-neptune/pyproject.toml b/llama-index-integrations/vector_stores/llama-index-vector-stores-neptune/pyproject.toml index 87cae6e3190dd..f96ed2cf5c392 100644 --- a/llama-index-integrations/vector_stores/llama-index-vector-stores-neptune/pyproject.toml +++ b/llama-index-integrations/vector_stores/llama-index-vector-stores-neptune/pyproject.toml @@ -30,7 +30,7 @@ license = "MIT" name = "llama-index-vector-stores-neptune" packages = [{include = "llama_index/"}] readme = "README.md" -version = "0.3.0" +version = "0.3.1" [tool.poetry.dependencies] python = ">=3.9,<4.0"