Skip to content
Snippets Groups Projects
Unverified Commit 997e6cee authored by James Briggs's avatar James Briggs
Browse files

feat: add init_async_index param

parent 95725f90
No related branches found
No related tags found
No related merge requests found
[tool.poetry]
name = "semantic-router"
version = "0.0.51"
version = "0.0.52"
description = "Super fast semantic router for AI decision making"
authors = [
"James Briggs <james@aurelio.ai>",
......
......@@ -18,6 +18,7 @@ class BaseIndex(BaseModel):
utterances: Optional[np.ndarray] = None
dimensions: Union[int, None] = None
type: str = "base"
init_async_index: bool = False
sync: Union[str, None] = None
def add(
......
......@@ -66,6 +66,7 @@ class PineconeIndex(BaseIndex):
namespace: Optional[str] = "",
base_url: Optional[str] = "https://api.pinecone.io",
sync: str = "local",
init_async_index: bool = False,
):
super().__init__()
self.index_name = index_name
......@@ -84,7 +85,10 @@ class PineconeIndex(BaseIndex):
raise ValueError("Pinecone API key is required.")
self.client = self._initialize_client(api_key=self.api_key)
self.async_client = self._initialize_async_client(api_key=self.api_key)
if init_async_index:
self.async_client = self._initialize_async_client(api_key=self.api_key)
else:
self.async_client = None
def _initialize_client(self, api_key: Optional[str] = None):
try:
......
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