Skip to content

Commit

Permalink
add test, fix missing method (#17485)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Jan 11, 2025
1 parent 2d399b9 commit 73b79b0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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]]:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 73b79b0

Please sign in to comment.