Vectara#

class langchain_community.vectorstores.vectara.Vectara(vectara_customer_id: str | None = None, vectara_corpus_id: str | None = None, vectara_api_key: str | None = None, vectara_api_timeout: int = 120, source: str = 'langchain')[source]#

Vectara API vector store.

Example

from langchain_community.vectorstores import Vectara

vectorstore = Vectara(
    vectara_customer_id=vectara_customer_id,
    vectara_corpus_id=vectara_corpus_id,
    vectara_api_key=vectara_api_key
)

Initialize with Vectara API.

Attributes

embeddings

Access the query embedding object if available.

Methods

__init__([vectara_customer_id, ...])

Initialize with Vectara API.

aadd_documents(documents, **kwargs)

Async run more documents through the embeddings and add to the vectorstore.

aadd_texts(texts[, metadatas])

Async run more texts through the embeddings and add to the vectorstore.

add_documents(documents, **kwargs)

Add or update documents in the vectorstore.

add_files(files_list[, metadatas])

Vectara provides a way to add documents directly via our API where pre-processing and chunking occurs internally in an optimal way This method provides a way to use that API in LangChain

add_texts(texts[, metadatas, doc_metadata])

Run more texts through the embeddings and add to the vectorstore.

adelete([ids])

Async delete by vector ID or other criteria.

afrom_documents(documents, embedding, **kwargs)

Async return VectorStore initialized from documents and embeddings.

afrom_texts(texts, embedding[, metadatas])

Async return VectorStore initialized from texts and embeddings.

aget_by_ids(ids, /)

Async get documents by their IDs.

amax_marginal_relevance_search(query[, k, ...])

Async return docs selected using the maximal marginal relevance.

amax_marginal_relevance_search_by_vector(...)

Async return docs selected using the maximal marginal relevance.

as_chat(config)

Return a Vectara RAG runnable for chat.

as_rag(config)

Return a Vectara RAG runnable.

as_retriever(**kwargs)

return a retriever object.

asearch(query, search_type, **kwargs)

Async return docs most similar to query using a specified search type.

asimilarity_search(query[, k])

Async return docs most similar to query.

asimilarity_search_by_vector(embedding[, k])

Async return docs most similar to embedding vector.

asimilarity_search_with_relevance_scores(query)

Async return docs and relevance scores in the range [0, 1].

asimilarity_search_with_score(*args, **kwargs)

Async run similarity search with distance.

delete([ids])

Delete by vector ID or other criteria.

from_documents(documents, embedding, **kwargs)

Return VectorStore initialized from documents and embeddings.

from_files(files[, embedding, metadatas])

Construct Vectara wrapper from raw documents.

from_texts(texts[, embedding, metadatas])

Construct Vectara wrapper from raw documents.

get_by_ids(ids, /)

Get documents by their IDs.

max_marginal_relevance_search(query[, ...])

Return docs selected using the maximal marginal relevance.

max_marginal_relevance_search_by_vector(...)

Return docs selected using the maximal marginal relevance.

search(query, search_type, **kwargs)

Return docs most similar to query using a specified search type.

similarity_search(query, **kwargs)

Return Vectara documents most similar to query, along with scores.

similarity_search_by_vector(embedding[, k])

Return docs most similar to embedding vector.

similarity_search_with_relevance_scores(query)

Return docs and relevance scores in the range [0, 1].

similarity_search_with_score(query, **kwargs)

Return Vectara documents most similar to query, along with scores.

vectara_query(query, config, **kwargs)

Run a Vectara query

Parameters:
  • vectara_customer_id (Optional[str])

  • vectara_corpus_id (Optional[str])

  • vectara_api_key (Optional[str])

  • vectara_api_timeout (int)

  • source (str)

__init__(vectara_customer_id: str | None = None, vectara_corpus_id: str | None = None, vectara_api_key: str | None = None, vectara_api_timeout: int = 120, source: str = 'langchain')[source]#

Initialize with Vectara API.

Parameters:
  • vectara_customer_id (str | None)

  • vectara_corpus_id (str | None)

  • vectara_api_key (str | None)

  • vectara_api_timeout (int)

  • source (str)

async aadd_documents(documents: list[Document], **kwargs: Any) list[str]#

Async run more documents through the embeddings and add to the vectorstore.

Parameters:
  • documents (list[Document]) – Documents to add to the vectorstore.

  • kwargs (Any) – Additional keyword arguments.

Returns:

List of IDs of the added texts.

Raises:

ValueError – If the number of IDs does not match the number of documents.

Return type:

list[str]

async aadd_texts(texts: Iterable[str], metadatas: list[dict] | None = None, **kwargs: Any) list[str]#

Async run more texts through the embeddings and add to the vectorstore.

Parameters:
  • texts (Iterable[str]) – Iterable of strings to add to the vectorstore.

  • metadatas (list[dict] | None) – Optional list of metadatas associated with the texts. Default is None.

  • **kwargs (Any) – vectorstore specific parameters.

Returns:

List of ids from adding the texts into the vectorstore.

Raises:
  • ValueError – If the number of metadatas does not match the number of texts.

  • ValueError – If the number of ids does not match the number of texts.

Return type:

list[str]

add_documents(documents: list[Document], **kwargs: Any) list[str]#

Add or update documents in the vectorstore.

Parameters:
  • documents (list[Document]) – Documents to add to the vectorstore.

  • kwargs (Any) – Additional keyword arguments. if kwargs contains ids and documents contain ids, the ids in the kwargs will receive precedence.

Returns:

List of IDs of the added texts.

Raises:

ValueError – If the number of ids does not match the number of documents.

Return type:

list[str]

add_files(files_list: Iterable[str], metadatas: List[dict] | None = None, **kwargs: Any) List[str][source]#

Vectara provides a way to add documents directly via our API where pre-processing and chunking occurs internally in an optimal way This method provides a way to use that API in LangChain

Parameters:
  • files_list (Iterable[str]) – Iterable of strings, each representing a local file path. Files could be text, HTML, PDF, markdown, doc/docx, ppt/pptx, etc. see API docs for full list

  • metadatas (List[dict] | None) – Optional list of metadatas associated with each file

  • kwargs (Any)

Returns:

List of ids associated with each of the files indexed

Return type:

List[str]

add_texts(texts: Iterable[str], metadatas: List[dict] | None = None, doc_metadata: dict | None = None, **kwargs: Any) List[str][source]#

Run more texts through the embeddings and add to the vectorstore.

Parameters:
  • texts (Iterable[str]) – Iterable of strings to add to the vectorstore.

  • metadatas (List[dict] | None) – Optional list of metadatas associated with the texts.

  • doc_metadata (dict | None) – optional metadata for the document

  • kwargs (Any)

Return type:

List[str]

This function indexes all the input text strings in the Vectara corpus as a single Vectara document, where each input text is considered a “section” and the metadata are associated with each section. if ‘doc_metadata’ is provided, it is associated with the Vectara document.

Returns:

document ID of the document added

Parameters:
  • texts (Iterable[str])

  • metadatas (List[dict] | None)

  • doc_metadata (dict | None)

  • kwargs (Any)

Return type:

List[str]

async adelete(ids: list[str] | None = None, **kwargs: Any) bool | None#

Async delete by vector ID or other criteria.

Parameters:
  • ids (list[str] | None) – List of ids to delete. If None, delete all. Default is None.

  • **kwargs (Any) – Other keyword arguments that subclasses might use.

Returns:

True if deletion is successful, False otherwise, None if not implemented.

Return type:

Optional[bool]

async classmethod afrom_documents(documents: list[Document], embedding: Embeddings, **kwargs: Any) VST#

Async return VectorStore initialized from documents and embeddings.

Parameters:
  • documents (list[Document]) – List of Documents to add to the vectorstore.

  • embedding (Embeddings) – Embedding function to use.

  • kwargs (Any) – Additional keyword arguments.

Returns:

VectorStore initialized from documents and embeddings.

Return type:

VectorStore

async classmethod afrom_texts(texts: list[str], embedding: Embeddings, metadatas: list[dict] | None = None, **kwargs: Any) VST#

Async return VectorStore initialized from texts and embeddings.

Parameters:
  • texts (list[str]) – Texts to add to the vectorstore.

  • embedding (Embeddings) – Embedding function to use.

  • metadatas (list[dict] | None) – Optional list of metadatas associated with the texts. Default is None.

  • kwargs (Any) – Additional keyword arguments.

Returns:

VectorStore initialized from texts and embeddings.

Return type:

VectorStore

async aget_by_ids(ids: Sequence[str], /) list[Document]#

Async get documents by their IDs.

The returned documents are expected to have the ID field set to the ID of the document in the vector store.

Fewer documents may be returned than requested if some IDs are not found or if there are duplicated IDs.

Users should not assume that the order of the returned documents matches the order of the input IDs. Instead, users should rely on the ID field of the returned documents.

This method should NOT raise exceptions if no documents are found for some IDs.

Parameters:

ids (Sequence[str]) – List of ids to retrieve.

Returns:

List of Documents.

Return type:

list[Document]

Added in version 0.2.11.

Async return docs selected using the maximal marginal relevance.

Maximal marginal relevance optimizes for similarity to query AND diversity among selected documents.

Parameters:
  • query (str) – Text to look up documents similar to.

  • k (int) – Number of Documents to return. Defaults to 4.

  • fetch_k (int) – Number of Documents to fetch to pass to MMR algorithm. Default is 20.

  • lambda_mult (float) – 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.

  • kwargs (Any)

Returns:

List of Documents selected by maximal marginal relevance.

Return type:

list[Document]

async amax_marginal_relevance_search_by_vector(embedding: list[float], k: int = 4, fetch_k: int = 20, lambda_mult: float = 0.5, **kwargs: Any) list[Document]#

Async return docs selected using the maximal marginal relevance.

Maximal marginal relevance optimizes for similarity to query AND diversity among selected documents.

Parameters:
  • embedding (list[float]) – Embedding to look up documents similar to.

  • k (int) – Number of Documents to return. Defaults to 4.

  • fetch_k (int) – Number of Documents to fetch to pass to MMR algorithm. Default is 20.

  • lambda_mult (float) – 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.

  • **kwargs (Any) – Arguments to pass to the search method.

Returns:

List of Documents selected by maximal marginal relevance.

Return type:

list[Document]

as_chat(config: VectaraQueryConfig) VectaraRAG[source]#

Return a Vectara RAG runnable for chat.

Parameters:

config (VectaraQueryConfig)

Return type:

VectaraRAG

as_rag(config: VectaraQueryConfig) VectaraRAG[source]#

Return a Vectara RAG runnable.

Parameters:

config (VectaraQueryConfig)

Return type:

VectaraRAG

as_retriever(**kwargs: Any) VectaraRetriever[source]#

return a retriever object.

Parameters:

kwargs (Any)

Return type:

VectaraRetriever

async asearch(query: str, search_type: str, **kwargs: Any) list[Document]#

Async return docs most similar to query using a specified search type.

Parameters:
  • query (str) – Input text.

  • search_type (str) – Type of search to perform. Can be “similarity”, “mmr”, or “similarity_score_threshold”.

  • **kwargs (Any) – Arguments to pass to the search method.

Returns:

List of Documents most similar to the query.

Raises:

ValueError – If search_type is not one of “similarity”, “mmr”, or “similarity_score_threshold”.

Return type:

list[Document]

Async return docs most similar to query.

Parameters:
  • query (str) – Input text.

  • k (int) – Number of Documents to return. Defaults to 4.

  • **kwargs (Any) – Arguments to pass to the search method.

Returns:

List of Documents most similar to the query.

Return type:

list[Document]

async asimilarity_search_by_vector(embedding: list[float], k: int = 4, **kwargs: Any) list[Document]#

Async return docs most similar to embedding vector.

Parameters:
  • embedding (list[float]) – Embedding to look up documents similar to.

  • k (int) – Number of Documents to return. Defaults to 4.

  • **kwargs (Any) – Arguments to pass to the search method.

Returns:

List of Documents most similar to the query vector.

Return type:

list[Document]

async asimilarity_search_with_relevance_scores(query: str, k: int = 4, **kwargs: Any) list[tuple[Document, float]]#

Async return docs and relevance scores in the range [0, 1].

0 is dissimilar, 1 is most similar.

Parameters:
  • query (str) – Input text.

  • k (int) – Number of Documents to return. Defaults to 4.

  • **kwargs (Any) –

    kwargs to be passed to similarity search. Should include: score_threshold: Optional, a floating point value between 0 to 1 to

    filter the resulting set of retrieved docs

Returns:

List of Tuples of (doc, similarity_score)

Return type:

list[tuple[Document, float]]

async asimilarity_search_with_score(*args: Any, **kwargs: Any) list[tuple[Document, float]]#

Async run similarity search with distance.

Parameters:
  • *args (Any) – Arguments to pass to the search method.

  • **kwargs (Any) – Arguments to pass to the search method.

Returns:

List of Tuples of (doc, similarity_score).

Return type:

list[tuple[Document, float]]

delete(ids: List[str] | None = None, **kwargs: Any) bool | None[source]#

Delete by vector ID or other criteria. :param ids: List of ids to delete.

Returns:

True if deletion is successful, False otherwise, None if not implemented.

Return type:

Optional[bool]

Parameters:
  • ids (List[str] | None)

  • kwargs (Any)

classmethod from_documents(documents: list[Document], embedding: Embeddings, **kwargs: Any) VST#

Return VectorStore initialized from documents and embeddings.

Parameters:
  • documents (list[Document]) – List of Documents to add to the vectorstore.

  • embedding (Embeddings) – Embedding function to use.

  • kwargs (Any) – Additional keyword arguments.

Returns:

VectorStore initialized from documents and embeddings.

Return type:

VectorStore

classmethod from_files(files: List[str], embedding: Embeddings | None = None, metadatas: List[dict] | None = None, **kwargs: Any) Vectara[source]#

Construct Vectara wrapper from raw documents. This is intended to be a quick way to get started. .. rubric:: Example

from langchain_community.vectorstores import Vectara
vectara = Vectara.from_files(
    files_list,
    vectara_customer_id=customer_id,
    vectara_corpus_id=corpus_id,
    vectara_api_key=api_key,
)
Parameters:
  • files (List[str])

  • embedding (Embeddings | None)

  • metadatas (List[dict] | None)

  • kwargs (Any)

Return type:

Vectara

classmethod from_texts(texts: List[str], embedding: Embeddings | None = None, metadatas: List[dict] | None = None, **kwargs: Any) Vectara[source]#

Construct Vectara wrapper from raw documents. This is intended to be a quick way to get started. .. rubric:: Example

from langchain_community.vectorstores import Vectara
vectara = Vectara.from_texts(
    texts,
    vectara_customer_id=customer_id,
    vectara_corpus_id=corpus_id,
    vectara_api_key=api_key,
)
Parameters:
  • texts (List[str])

  • embedding (Embeddings | None)

  • metadatas (List[dict] | None)

  • kwargs (Any)

Return type:

Vectara

get_by_ids(ids: Sequence[str], /) list[Document]#

Get documents by their IDs.

The returned documents are expected to have the ID field set to the ID of the document in the vector store.

Fewer documents may be returned than requested if some IDs are not found or if there are duplicated IDs.

Users should not assume that the order of the returned documents matches the order of the input IDs. Instead, users should rely on the ID field of the returned documents.

This method should NOT raise exceptions if no documents are found for some IDs.

Parameters:

ids (Sequence[str]) – List of ids to retrieve.

Returns:

List of Documents.

Return type:

list[Document]

Added in version 0.2.11.

Return docs selected using the maximal marginal relevance. Maximal marginal relevance optimizes for similarity to query AND diversity among selected documents.

Parameters:
  • query (str) – Text to look up documents similar to.

  • k – Number of Documents to return. Defaults to 5.

  • fetch_k (int) – Number of Documents to fetch to pass to MMR algorithm. Defaults to 50

  • lambda_mult (float) – 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.

  • kwargs (Any) – any other querying variable in VectaraQueryConfig

Returns:

List of Documents selected by maximal marginal relevance.

Return type:

List[Document]

max_marginal_relevance_search_by_vector(embedding: list[float], k: int = 4, fetch_k: int = 20, lambda_mult: float = 0.5, **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.

Parameters:
  • embedding (list[float]) – Embedding to look up documents similar to.

  • k (int) – Number of Documents to return. Defaults to 4.

  • fetch_k (int) – Number of Documents to fetch to pass to MMR algorithm. Default is 20.

  • lambda_mult (float) – 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.

  • **kwargs (Any) – Arguments to pass to the search method.

Returns:

List of Documents selected by maximal marginal relevance.

Return type:

list[Document]

search(query: str, search_type: str, **kwargs: Any) list[Document]#

Return docs most similar to query using a specified search type.

Parameters:
  • query (str) – Input text

  • search_type (str) – Type of search to perform. Can be “similarity”, “mmr”, or “similarity_score_threshold”.

  • **kwargs (Any) – Arguments to pass to the search method.

Returns:

List of Documents most similar to the query.

Raises:

ValueError – If search_type is not one of “similarity”, “mmr”, or “similarity_score_threshold”.

Return type:

list[Document]

Return Vectara documents most similar to query, along with scores.

Parameters:
  • query (str) – Text to look up documents similar to.

  • VectaraQueryConfig (any other querying variable in)

  • kwargs (Any)

Returns:

List of Documents most similar to the query

Return type:

List[Document]

similarity_search_by_vector(embedding: list[float], k: int = 4, **kwargs: Any) list[Document]#

Return docs most similar to embedding vector.

Parameters:
  • embedding (list[float]) – Embedding to look up documents similar to.

  • k (int) – Number of Documents to return. Defaults to 4.

  • **kwargs (Any) – Arguments to pass to the search method.

Returns:

List of Documents most similar to the query vector.

Return type:

list[Document]

similarity_search_with_relevance_scores(query: str, k: int = 4, **kwargs: Any) list[tuple[Document, float]]#

Return docs and relevance scores in the range [0, 1].

0 is dissimilar, 1 is most similar.

Parameters:
  • query (str) – Input text.

  • k (int) – Number of Documents to return. Defaults to 4.

  • **kwargs (Any) –

    kwargs to be passed to similarity search. Should include: score_threshold: Optional, a floating point value between 0 to 1 to

    filter the resulting set of retrieved docs.

Returns:

List of Tuples of (doc, similarity_score).

Return type:

list[tuple[Document, float]]

similarity_search_with_score(query: str, **kwargs: Any) List[Tuple[Document, float]][source]#

Return Vectara documents most similar to query, along with scores.

Parameters:
  • query (str) – Text to look up documents similar to.

  • k – Number of Documents to return. Defaults to 10.

  • like (any other querying variable in VectaraQueryConfig)

  • lambda_val (-) – lexical match parameter for hybrid search.

  • filter (-) – filter string

  • score_threshold (-) – minimal score threshold for the result.

  • n_sentence_before (-) – number of sentences before the matching segment

  • n_sentence_after (-) – number of sentences after the matching segment

  • rerank_config (-) – optional configuration for Reranking (see RerankConfig dataclass)

  • summary_config (-) – optional configuration for summary (see SummaryConfig dataclass)

  • kwargs (Any)

Returns:

List of Documents most similar to the query and score for each.

Return type:

List[Tuple[Document, float]]

vectara_query(query: str, config: VectaraQueryConfig, **kwargs: Any) List[Tuple[Document, float]][source]#

Run a Vectara query

Parameters:
  • query (str) – Text to look up documents similar to.

  • config (VectaraQueryConfig) – VectaraQueryConfig object

  • kwargs (Any)

Returns:

A list of k Documents matching the given query If summary is enabled, last document is the summary text with ‘summary’=True

Return type:

List[Tuple[Document, float]]

Examples using Vectara