Skip to content
Snippets Groups Projects
Commit 7f22e965 authored by Ismail Ashraq's avatar Ismail Ashraq
Browse files

update docstring

parent 3fa78fc4
No related branches found
No related tags found
No related merge requests found
...@@ -466,6 +466,23 @@ class PineconeIndex(BaseIndex): ...@@ -466,6 +466,23 @@ class PineconeIndex(BaseIndex):
route_filter: Optional[List[str]] = None, route_filter: Optional[List[str]] = None,
**kwargs: Any, **kwargs: Any,
) -> Tuple[np.ndarray, List[str]]: ) -> Tuple[np.ndarray, List[str]]:
"""
Search the index for the query vector and return the top_k results.
:param vector: The query vector to search for.
:type vector: np.ndarray
:param top_k: The number of top results to return, defaults to 5.
:type top_k: int, optional
:param route_filter: A list of route names to filter the search results, defaults to None.
:type route_filter: Optional[List[str]], optional
:param kwargs: Additional keyword arguments for the query, including sparse_vector.
:type kwargs: Any
:keyword sparse_vector: An optional sparse vector to include in the query.
:type sparse_vector: Optional[dict]
:return: A tuple containing an array of scores and a list of route names.
:rtype: Tuple[np.ndarray, List[str]]
:raises ValueError: If the index is not populated.
"""
if self.index is None: if self.index is None:
raise ValueError("Index is not populated.") raise ValueError("Index is not populated.")
query_vector_list = vector.tolist() query_vector_list = vector.tolist()
...@@ -492,6 +509,23 @@ class PineconeIndex(BaseIndex): ...@@ -492,6 +509,23 @@ class PineconeIndex(BaseIndex):
route_filter: Optional[List[str]] = None, route_filter: Optional[List[str]] = None,
**kwargs: Any, **kwargs: Any,
) -> Tuple[np.ndarray, List[str]]: ) -> Tuple[np.ndarray, List[str]]:
"""
Asynchronously search the index for the query vector and return the top_k results.
:param vector: The query vector to search for.
:type vector: np.ndarray
:param top_k: The number of top results to return, defaults to 5.
:type top_k: int, optional
:param route_filter: A list of route names to filter the search results, defaults to None.
:type route_filter: Optional[List[str]], optional
:param kwargs: Additional keyword arguments for the query, including sparse_vector.
:type kwargs: Any
:keyword sparse_vector: An optional sparse vector to include in the query.
:type sparse_vector: Optional[dict]
:return: A tuple containing an array of scores and a list of route names.
:rtype: Tuple[np.ndarray, List[str]]
:raises ValueError: If the index is not populated.
"""
if self.async_client is None or self.host is None: if self.async_client is None or self.host is None:
raise ValueError("Async client or host are not initialized.") raise ValueError("Async client or host are not initialized.")
query_vector_list = vector.tolist() query_vector_list = vector.tolist()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment