2023-12-11 21:53:30 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
import logging
|
2024-01-08 19:33:36 +00:00
|
|
|
import os
|
2023-12-11 21:53:30 +00:00
|
|
|
import uuid
|
|
|
|
import warnings
|
2024-01-10 22:54:50 +00:00
|
|
|
from typing import TYPE_CHECKING, Any, Callable, Iterable, List, Optional, Tuple, Union
|
2023-12-11 21:53:30 +00:00
|
|
|
|
|
|
|
import numpy as np
|
pinecone: init pkg (#16556)
<!-- Thank you for contributing to LangChain!
Please title your PR "<package>: <description>", where <package> is
whichever of langchain, community, core, experimental, etc. is being
modified.
Replace this entire comment with:
- **Description:** a description of the change,
- **Issue:** the issue # it fixes if applicable,
- **Dependencies:** any dependencies required for this change,
- **Twitter handle:** we announce bigger features on Twitter. If your PR
gets announced, and you'd like a mention, we'll gladly shout you out!
Please make sure your PR is passing linting and testing before
submitting. Run `make format`, `make lint` and `make test` from the root
of the package you've modified to check this locally.
See contribution guidelines for more information on how to write/run
tests, lint, etc: https://python.langchain.com/docs/contributing/
If you're adding a new integration, please include:
1. a test for the integration, preferably unit tests that do not rely on
network access,
2. an example notebook showing its use. It lives in
`docs/docs/integrations` directory.
If no one reviews your PR within a few days, please @-mention one of
@baskaryan, @eyurtsev, @hwchase17.
-->
2024-02-05 19:55:01 +00:00
|
|
|
from langchain_core._api.deprecation import deprecated
|
2023-12-11 21:53:30 +00:00
|
|
|
from langchain_core.documents import Document
|
|
|
|
from langchain_core.embeddings import Embeddings
|
|
|
|
from langchain_core.utils.iter import batch_iterate
|
|
|
|
from langchain_core.vectorstores import VectorStore
|
2024-01-08 19:33:36 +00:00
|
|
|
from packaging import version
|
2023-12-11 21:53:30 +00:00
|
|
|
|
|
|
|
from langchain_community.vectorstores.utils import (
|
|
|
|
DistanceStrategy,
|
|
|
|
maximal_marginal_relevance,
|
|
|
|
)
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from pinecone import Index
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2024-01-10 22:54:50 +00:00
|
|
|
def _import_pinecone() -> Any:
|
|
|
|
try:
|
|
|
|
import pinecone
|
|
|
|
except ImportError as e:
|
|
|
|
raise ImportError(
|
|
|
|
"Could not import pinecone python package. "
|
|
|
|
"Please install it with `pip install pinecone-client`."
|
|
|
|
) from e
|
|
|
|
return pinecone
|
|
|
|
|
|
|
|
|
|
|
|
def _is_pinecone_v3() -> bool:
|
|
|
|
pinecone = _import_pinecone()
|
|
|
|
pinecone_client_version = pinecone.__version__
|
2024-01-11 19:44:07 +00:00
|
|
|
return version.parse(pinecone_client_version) >= version.parse("3.0.0.dev")
|
2024-01-10 22:54:50 +00:00
|
|
|
|
|
|
|
|
pinecone: init pkg (#16556)
<!-- Thank you for contributing to LangChain!
Please title your PR "<package>: <description>", where <package> is
whichever of langchain, community, core, experimental, etc. is being
modified.
Replace this entire comment with:
- **Description:** a description of the change,
- **Issue:** the issue # it fixes if applicable,
- **Dependencies:** any dependencies required for this change,
- **Twitter handle:** we announce bigger features on Twitter. If your PR
gets announced, and you'd like a mention, we'll gladly shout you out!
Please make sure your PR is passing linting and testing before
submitting. Run `make format`, `make lint` and `make test` from the root
of the package you've modified to check this locally.
See contribution guidelines for more information on how to write/run
tests, lint, etc: https://python.langchain.com/docs/contributing/
If you're adding a new integration, please include:
1. a test for the integration, preferably unit tests that do not rely on
network access,
2. an example notebook showing its use. It lives in
`docs/docs/integrations` directory.
If no one reviews your PR within a few days, please @-mention one of
@baskaryan, @eyurtsev, @hwchase17.
-->
2024-02-05 19:55:01 +00:00
|
|
|
@deprecated(
|
|
|
|
since="0.0.18", removal="0.2.0", alternative_import="langchain_pinecone.Pinecone"
|
|
|
|
)
|
2023-12-11 21:53:30 +00:00
|
|
|
class Pinecone(VectorStore):
|
|
|
|
"""`Pinecone` vector store.
|
|
|
|
|
|
|
|
To use, you should have the ``pinecone-client`` python package installed.
|
|
|
|
|
pinecone: init pkg (#16556)
<!-- Thank you for contributing to LangChain!
Please title your PR "<package>: <description>", where <package> is
whichever of langchain, community, core, experimental, etc. is being
modified.
Replace this entire comment with:
- **Description:** a description of the change,
- **Issue:** the issue # it fixes if applicable,
- **Dependencies:** any dependencies required for this change,
- **Twitter handle:** we announce bigger features on Twitter. If your PR
gets announced, and you'd like a mention, we'll gladly shout you out!
Please make sure your PR is passing linting and testing before
submitting. Run `make format`, `make lint` and `make test` from the root
of the package you've modified to check this locally.
See contribution guidelines for more information on how to write/run
tests, lint, etc: https://python.langchain.com/docs/contributing/
If you're adding a new integration, please include:
1. a test for the integration, preferably unit tests that do not rely on
network access,
2. an example notebook showing its use. It lives in
`docs/docs/integrations` directory.
If no one reviews your PR within a few days, please @-mention one of
@baskaryan, @eyurtsev, @hwchase17.
-->
2024-02-05 19:55:01 +00:00
|
|
|
This version of Pinecone is deprecated. Please use `langchain_pinecone.Pinecone`
|
|
|
|
instead.
|
2023-12-11 21:53:30 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
index: Any,
|
|
|
|
embedding: Union[Embeddings, Callable],
|
|
|
|
text_key: str,
|
|
|
|
namespace: Optional[str] = None,
|
|
|
|
distance_strategy: Optional[DistanceStrategy] = DistanceStrategy.COSINE,
|
|
|
|
):
|
|
|
|
"""Initialize with Pinecone client."""
|
2024-01-10 22:54:50 +00:00
|
|
|
pinecone = _import_pinecone()
|
2023-12-11 21:53:30 +00:00
|
|
|
if not isinstance(embedding, Embeddings):
|
|
|
|
warnings.warn(
|
|
|
|
"Passing in `embedding` as a Callable is deprecated. Please pass in an"
|
|
|
|
" Embeddings object instead."
|
|
|
|
)
|
2024-01-08 19:33:36 +00:00
|
|
|
if not isinstance(index, pinecone.Index):
|
2023-12-11 21:53:30 +00:00
|
|
|
raise ValueError(
|
2024-01-08 19:33:36 +00:00
|
|
|
f"client should be an instance of pinecone.Index, " f"got {type(index)}"
|
2023-12-11 21:53:30 +00:00
|
|
|
)
|
|
|
|
self._index = index
|
|
|
|
self._embedding = embedding
|
|
|
|
self._text_key = text_key
|
|
|
|
self._namespace = namespace
|
|
|
|
self.distance_strategy = distance_strategy
|
|
|
|
|
|
|
|
@property
|
|
|
|
def embeddings(self) -> Optional[Embeddings]:
|
|
|
|
"""Access the query embedding object if available."""
|
|
|
|
if isinstance(self._embedding, Embeddings):
|
|
|
|
return self._embedding
|
|
|
|
return None
|
|
|
|
|
|
|
|
def _embed_documents(self, texts: Iterable[str]) -> List[List[float]]:
|
|
|
|
"""Embed search docs."""
|
|
|
|
if isinstance(self._embedding, Embeddings):
|
|
|
|
return self._embedding.embed_documents(list(texts))
|
|
|
|
return [self._embedding(t) for t in texts]
|
|
|
|
|
|
|
|
def _embed_query(self, text: str) -> List[float]:
|
|
|
|
"""Embed query text."""
|
|
|
|
if isinstance(self._embedding, Embeddings):
|
|
|
|
return self._embedding.embed_query(text)
|
|
|
|
return self._embedding(text)
|
|
|
|
|
|
|
|
def add_texts(
|
|
|
|
self,
|
|
|
|
texts: Iterable[str],
|
|
|
|
metadatas: Optional[List[dict]] = None,
|
|
|
|
ids: Optional[List[str]] = None,
|
|
|
|
namespace: Optional[str] = None,
|
|
|
|
batch_size: int = 32,
|
|
|
|
embedding_chunk_size: int = 1000,
|
|
|
|
**kwargs: Any,
|
|
|
|
) -> List[str]:
|
|
|
|
"""Run more texts through the embeddings and add to the vectorstore.
|
|
|
|
|
|
|
|
Upsert optimization is done by chunking the embeddings and upserting them.
|
|
|
|
This is done to avoid memory issues and optimize using HTTP based embeddings.
|
|
|
|
For OpenAI embeddings, use pool_threads>4 when constructing the pinecone.Index,
|
|
|
|
embedding_chunk_size>1000 and batch_size~64 for best performance.
|
|
|
|
Args:
|
|
|
|
texts: Iterable of strings to add to the vectorstore.
|
|
|
|
metadatas: Optional list of metadatas associated with the texts.
|
|
|
|
ids: Optional list of ids to associate with the texts.
|
|
|
|
namespace: Optional pinecone namespace to add the texts to.
|
|
|
|
batch_size: Batch size to use when adding the texts to the vectorstore.
|
|
|
|
embedding_chunk_size: Chunk size to use when embedding the texts.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
List of ids from adding the texts into the vectorstore.
|
|
|
|
|
|
|
|
"""
|
|
|
|
if namespace is None:
|
|
|
|
namespace = self._namespace
|
|
|
|
|
|
|
|
texts = list(texts)
|
|
|
|
ids = ids or [str(uuid.uuid4()) for _ in texts]
|
|
|
|
metadatas = metadatas or [{} for _ in texts]
|
|
|
|
for metadata, text in zip(metadatas, texts):
|
|
|
|
metadata[self._text_key] = text
|
|
|
|
|
|
|
|
# For loops to avoid memory issues and optimize when using HTTP based embeddings
|
|
|
|
# The first loop runs the embeddings, it benefits when using OpenAI embeddings
|
|
|
|
# The second loops runs the pinecone upsert asynchronously.
|
|
|
|
for i in range(0, len(texts), embedding_chunk_size):
|
|
|
|
chunk_texts = texts[i : i + embedding_chunk_size]
|
|
|
|
chunk_ids = ids[i : i + embedding_chunk_size]
|
|
|
|
chunk_metadatas = metadatas[i : i + embedding_chunk_size]
|
|
|
|
embeddings = self._embed_documents(chunk_texts)
|
|
|
|
async_res = [
|
|
|
|
self._index.upsert(
|
|
|
|
vectors=batch,
|
|
|
|
namespace=namespace,
|
|
|
|
async_req=True,
|
|
|
|
**kwargs,
|
|
|
|
)
|
|
|
|
for batch in batch_iterate(
|
|
|
|
batch_size, zip(chunk_ids, embeddings, chunk_metadatas)
|
|
|
|
)
|
|
|
|
]
|
|
|
|
[res.get() for res in async_res]
|
|
|
|
|
|
|
|
return ids
|
|
|
|
|
|
|
|
def similarity_search_with_score(
|
|
|
|
self,
|
|
|
|
query: str,
|
|
|
|
k: int = 4,
|
|
|
|
filter: Optional[dict] = None,
|
|
|
|
namespace: Optional[str] = None,
|
|
|
|
) -> List[Tuple[Document, float]]:
|
|
|
|
"""Return pinecone documents most similar to query, along with scores.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
query: Text to look up documents similar to.
|
|
|
|
k: Number of Documents to return. Defaults to 4.
|
|
|
|
filter: Dictionary of argument(s) to filter on metadata
|
|
|
|
namespace: Namespace to search in. Default will search in '' namespace.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
List of Documents most similar to the query and score for each
|
|
|
|
"""
|
|
|
|
return self.similarity_search_by_vector_with_score(
|
|
|
|
self._embed_query(query), k=k, filter=filter, namespace=namespace
|
|
|
|
)
|
|
|
|
|
|
|
|
def similarity_search_by_vector_with_score(
|
|
|
|
self,
|
|
|
|
embedding: List[float],
|
|
|
|
*,
|
|
|
|
k: int = 4,
|
|
|
|
filter: Optional[dict] = None,
|
|
|
|
namespace: Optional[str] = None,
|
|
|
|
) -> List[Tuple[Document, float]]:
|
|
|
|
"""Return pinecone documents most similar to embedding, along with scores."""
|
|
|
|
|
|
|
|
if namespace is None:
|
|
|
|
namespace = self._namespace
|
|
|
|
docs = []
|
|
|
|
results = self._index.query(
|
2024-01-16 14:12:19 +00:00
|
|
|
vector=[embedding],
|
2023-12-11 21:53:30 +00:00
|
|
|
top_k=k,
|
|
|
|
include_metadata=True,
|
|
|
|
namespace=namespace,
|
|
|
|
filter=filter,
|
|
|
|
)
|
|
|
|
for res in results["matches"]:
|
|
|
|
metadata = res["metadata"]
|
|
|
|
if self._text_key in metadata:
|
|
|
|
text = metadata.pop(self._text_key)
|
|
|
|
score = res["score"]
|
|
|
|
docs.append((Document(page_content=text, metadata=metadata), score))
|
|
|
|
else:
|
|
|
|
logger.warning(
|
|
|
|
f"Found document with no `{self._text_key}` key. Skipping."
|
|
|
|
)
|
|
|
|
return docs
|
|
|
|
|
|
|
|
def similarity_search(
|
|
|
|
self,
|
|
|
|
query: str,
|
|
|
|
k: int = 4,
|
|
|
|
filter: Optional[dict] = None,
|
|
|
|
namespace: Optional[str] = None,
|
|
|
|
**kwargs: Any,
|
|
|
|
) -> List[Document]:
|
|
|
|
"""Return pinecone documents most similar to query.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
query: Text to look up documents similar to.
|
|
|
|
k: Number of Documents to return. Defaults to 4.
|
|
|
|
filter: Dictionary of argument(s) to filter on metadata
|
|
|
|
namespace: Namespace to search in. Default will search in '' namespace.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
List of Documents most similar to the query and score for each
|
|
|
|
"""
|
|
|
|
docs_and_scores = self.similarity_search_with_score(
|
|
|
|
query, k=k, filter=filter, namespace=namespace, **kwargs
|
|
|
|
)
|
|
|
|
return [doc for doc, _ in docs_and_scores]
|
|
|
|
|
|
|
|
def _select_relevance_score_fn(self) -> Callable[[float], float]:
|
|
|
|
"""
|
|
|
|
The 'correct' relevance function
|
|
|
|
may differ depending on a few things, including:
|
|
|
|
- the distance / similarity metric used by the VectorStore
|
|
|
|
- the scale of your embeddings (OpenAI's are unit normed. Many others are not!)
|
|
|
|
- embedding dimensionality
|
|
|
|
- etc.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if self.distance_strategy == DistanceStrategy.COSINE:
|
|
|
|
return self._cosine_relevance_score_fn
|
|
|
|
elif self.distance_strategy == DistanceStrategy.MAX_INNER_PRODUCT:
|
|
|
|
return self._max_inner_product_relevance_score_fn
|
|
|
|
elif self.distance_strategy == DistanceStrategy.EUCLIDEAN_DISTANCE:
|
|
|
|
return self._euclidean_relevance_score_fn
|
|
|
|
else:
|
|
|
|
raise ValueError(
|
|
|
|
"Unknown distance strategy, must be cosine, max_inner_product "
|
|
|
|
"(dot product), or euclidean"
|
|
|
|
)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _cosine_relevance_score_fn(score: float) -> float:
|
|
|
|
"""Pinecone returns cosine similarity scores between [-1,1]"""
|
|
|
|
return (score + 1) / 2
|
|
|
|
|
|
|
|
def max_marginal_relevance_search_by_vector(
|
|
|
|
self,
|
|
|
|
embedding: List[float],
|
|
|
|
k: int = 4,
|
|
|
|
fetch_k: int = 20,
|
|
|
|
lambda_mult: float = 0.5,
|
|
|
|
filter: Optional[dict] = None,
|
|
|
|
namespace: Optional[str] = None,
|
|
|
|
**kwargs: Any,
|
|
|
|
) -> List[Document]:
|
|
|
|
"""Return docs selected using the maximal marginal relevance.
|
|
|
|
|
|
|
|
Maximal marginal relevance optimizes for similarity to query AND diversity
|
|
|
|
among selected documents.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
embedding: Embedding to look up documents similar to.
|
|
|
|
k: Number of Documents to return. Defaults to 4.
|
|
|
|
fetch_k: Number of Documents to fetch to pass to MMR algorithm.
|
|
|
|
lambda_mult: Number between 0 and 1 that determines the degree
|
|
|
|
of diversity among the results with 0 corresponding
|
|
|
|
to maximum diversity and 1 to minimum diversity.
|
|
|
|
Defaults to 0.5.
|
|
|
|
Returns:
|
|
|
|
List of Documents selected by maximal marginal relevance.
|
|
|
|
"""
|
|
|
|
if namespace is None:
|
|
|
|
namespace = self._namespace
|
|
|
|
results = self._index.query(
|
2024-01-16 14:12:19 +00:00
|
|
|
vector=[embedding],
|
2023-12-11 21:53:30 +00:00
|
|
|
top_k=fetch_k,
|
|
|
|
include_values=True,
|
|
|
|
include_metadata=True,
|
|
|
|
namespace=namespace,
|
|
|
|
filter=filter,
|
|
|
|
)
|
|
|
|
mmr_selected = maximal_marginal_relevance(
|
|
|
|
np.array([embedding], dtype=np.float32),
|
|
|
|
[item["values"] for item in results["matches"]],
|
|
|
|
k=k,
|
|
|
|
lambda_mult=lambda_mult,
|
|
|
|
)
|
|
|
|
selected = [results["matches"][i]["metadata"] for i in mmr_selected]
|
|
|
|
return [
|
|
|
|
Document(page_content=metadata.pop((self._text_key)), metadata=metadata)
|
|
|
|
for metadata in selected
|
|
|
|
]
|
|
|
|
|
|
|
|
def max_marginal_relevance_search(
|
|
|
|
self,
|
|
|
|
query: str,
|
|
|
|
k: int = 4,
|
|
|
|
fetch_k: int = 20,
|
|
|
|
lambda_mult: float = 0.5,
|
|
|
|
filter: Optional[dict] = None,
|
|
|
|
namespace: Optional[str] = None,
|
|
|
|
**kwargs: Any,
|
|
|
|
) -> List[Document]:
|
|
|
|
"""Return docs selected using the maximal marginal relevance.
|
|
|
|
|
|
|
|
Maximal marginal relevance optimizes for similarity to query AND diversity
|
|
|
|
among selected documents.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
query: Text to look up documents similar to.
|
|
|
|
k: Number of Documents to return. Defaults to 4.
|
|
|
|
fetch_k: Number of Documents to fetch to pass to MMR algorithm.
|
|
|
|
lambda_mult: Number between 0 and 1 that determines the degree
|
|
|
|
of diversity among the results with 0 corresponding
|
|
|
|
to maximum diversity and 1 to minimum diversity.
|
|
|
|
Defaults to 0.5.
|
|
|
|
Returns:
|
|
|
|
List of Documents selected by maximal marginal relevance.
|
|
|
|
"""
|
|
|
|
embedding = self._embed_query(query)
|
|
|
|
return self.max_marginal_relevance_search_by_vector(
|
|
|
|
embedding, k, fetch_k, lambda_mult, filter, namespace
|
|
|
|
)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_pinecone_index(
|
|
|
|
cls,
|
|
|
|
index_name: Optional[str],
|
|
|
|
pool_threads: int = 4,
|
|
|
|
) -> Index:
|
|
|
|
"""Return a Pinecone Index instance.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
index_name: Name of the index to use.
|
|
|
|
pool_threads: Number of threads to use for index upsert.
|
|
|
|
Returns:
|
|
|
|
Pinecone Index instance."""
|
|
|
|
|
2024-01-10 22:54:50 +00:00
|
|
|
pinecone = _import_pinecone()
|
2023-12-11 21:53:30 +00:00
|
|
|
|
2024-01-10 22:54:50 +00:00
|
|
|
if _is_pinecone_v3():
|
2024-01-08 19:33:36 +00:00
|
|
|
pinecone_instance = pinecone.Pinecone(
|
|
|
|
api_key=os.environ.get("PINECONE_API_KEY"), pool_threads=pool_threads
|
|
|
|
)
|
|
|
|
indexes = pinecone_instance.list_indexes()
|
|
|
|
index_names = [i.name for i in indexes.index_list["indexes"]]
|
|
|
|
else:
|
|
|
|
index_names = pinecone.list_indexes()
|
|
|
|
|
|
|
|
if index_name in index_names:
|
|
|
|
index = (
|
|
|
|
pinecone_instance.Index(index_name)
|
2024-01-11 19:44:07 +00:00
|
|
|
if _is_pinecone_v3()
|
2024-01-08 19:33:36 +00:00
|
|
|
else pinecone.Index(index_name, pool_threads=pool_threads)
|
|
|
|
)
|
|
|
|
elif len(index_names) == 0:
|
2023-12-11 21:53:30 +00:00
|
|
|
raise ValueError(
|
|
|
|
"No active indexes found in your Pinecone project, "
|
|
|
|
"are you sure you're using the right Pinecone API key and Environment? "
|
|
|
|
"Please double check your Pinecone dashboard."
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
raise ValueError(
|
|
|
|
f"Index '{index_name}' not found in your Pinecone project. "
|
2024-01-08 19:33:36 +00:00
|
|
|
f"Did you mean one of the following indexes: {', '.join(index_names)}"
|
2023-12-11 21:53:30 +00:00
|
|
|
)
|
|
|
|
return index
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def from_texts(
|
|
|
|
cls,
|
|
|
|
texts: List[str],
|
|
|
|
embedding: Embeddings,
|
|
|
|
metadatas: Optional[List[dict]] = None,
|
|
|
|
ids: Optional[List[str]] = None,
|
|
|
|
batch_size: int = 32,
|
|
|
|
text_key: str = "text",
|
|
|
|
namespace: Optional[str] = None,
|
|
|
|
index_name: Optional[str] = None,
|
|
|
|
upsert_kwargs: Optional[dict] = None,
|
|
|
|
pool_threads: int = 4,
|
|
|
|
embeddings_chunk_size: int = 1000,
|
|
|
|
**kwargs: Any,
|
|
|
|
) -> Pinecone:
|
2024-02-22 16:24:08 +00:00
|
|
|
"""
|
|
|
|
DEPRECATED: use langchain_pinecone.PineconeVectorStore.from_texts instead:
|
|
|
|
Construct Pinecone wrapper from raw documents.
|
2023-12-11 21:53:30 +00:00
|
|
|
|
|
|
|
This is a user friendly interface that:
|
|
|
|
1. Embeds documents.
|
|
|
|
2. Adds the documents to a provided Pinecone index
|
|
|
|
|
|
|
|
This is intended to be a quick way to get started.
|
|
|
|
|
|
|
|
The `pool_threads` affects the speed of the upsert operations.
|
2024-02-22 16:24:08 +00:00
|
|
|
|
2023-12-11 21:53:30 +00:00
|
|
|
Example:
|
|
|
|
.. code-block:: python
|
|
|
|
|
2024-02-22 16:24:08 +00:00
|
|
|
from langchain_pinecone import PineconeVectorStore
|
|
|
|
from langchain_openai import OpenAIEmbeddings
|
2023-12-11 21:53:30 +00:00
|
|
|
|
|
|
|
embeddings = OpenAIEmbeddings()
|
2024-02-22 16:24:08 +00:00
|
|
|
index_name = "my-index"
|
|
|
|
namespace = "my-namespace"
|
|
|
|
vectorstore = Pinecone(
|
|
|
|
index_name=index_name,
|
|
|
|
embedding=embedding,
|
|
|
|
namespace=namespace,
|
2023-12-11 21:53:30 +00:00
|
|
|
)
|
|
|
|
"""
|
|
|
|
pinecone_index = cls.get_pinecone_index(index_name, pool_threads)
|
|
|
|
pinecone = cls(pinecone_index, embedding, text_key, namespace, **kwargs)
|
|
|
|
|
|
|
|
pinecone.add_texts(
|
|
|
|
texts,
|
|
|
|
metadatas=metadatas,
|
|
|
|
ids=ids,
|
|
|
|
namespace=namespace,
|
|
|
|
batch_size=batch_size,
|
|
|
|
embedding_chunk_size=embeddings_chunk_size,
|
|
|
|
**(upsert_kwargs or {}),
|
|
|
|
)
|
|
|
|
return pinecone
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def from_existing_index(
|
|
|
|
cls,
|
|
|
|
index_name: str,
|
|
|
|
embedding: Embeddings,
|
|
|
|
text_key: str = "text",
|
|
|
|
namespace: Optional[str] = None,
|
|
|
|
pool_threads: int = 4,
|
|
|
|
) -> Pinecone:
|
|
|
|
"""Load pinecone vectorstore from index name."""
|
|
|
|
pinecone_index = cls.get_pinecone_index(index_name, pool_threads)
|
|
|
|
return cls(pinecone_index, embedding, text_key, namespace)
|
|
|
|
|
|
|
|
def delete(
|
|
|
|
self,
|
|
|
|
ids: Optional[List[str]] = None,
|
|
|
|
delete_all: Optional[bool] = None,
|
|
|
|
namespace: Optional[str] = None,
|
|
|
|
filter: Optional[dict] = None,
|
|
|
|
**kwargs: Any,
|
|
|
|
) -> None:
|
|
|
|
"""Delete by vector IDs or filter.
|
|
|
|
Args:
|
|
|
|
ids: List of ids to delete.
|
|
|
|
filter: Dictionary of conditions to filter vectors to delete.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if namespace is None:
|
|
|
|
namespace = self._namespace
|
|
|
|
|
|
|
|
if delete_all:
|
|
|
|
self._index.delete(delete_all=True, namespace=namespace, **kwargs)
|
|
|
|
elif ids is not None:
|
|
|
|
chunk_size = 1000
|
|
|
|
for i in range(0, len(ids), chunk_size):
|
|
|
|
chunk = ids[i : i + chunk_size]
|
|
|
|
self._index.delete(ids=chunk, namespace=namespace, **kwargs)
|
|
|
|
elif filter is not None:
|
|
|
|
self._index.delete(filter=filter, namespace=namespace, **kwargs)
|
|
|
|
else:
|
|
|
|
raise ValueError("Either ids, delete_all, or filter must be provided.")
|
|
|
|
|
|
|
|
return None
|