Vectara
Vectara is a GenAI platform for developers. It provides a simple API to build Grounded Generation (aka Retrieval-augmented-generation or RAG) applications.
Vectara Overview:
Vectara
is developer-first API platform for building GenAI applications- To use Vectara - first sign up and create an account. Then create a corpus and an API key for indexing and searching.
- You can use Vectara's indexing API to add documents into Vectara's index
- You can use Vectara's Search API to query Vectara's index (which also supports Hybrid search implicitly).
- You can use Vectara's integration with LangChain as a Vector store or using the Retriever abstraction.
Installation and Setupβ
To use Vectara
with LangChain no special installation steps are required.
To get started, sign up and follow our quickstart guide to create a corpus and an API key.
Once you have these, you can provide them as arguments to the Vectara vectorstore, or you can set them as environment variables.
- export
VECTARA_CUSTOMER_ID
="your_customer_id" - export
VECTARA_CORPUS_ID
="your_corpus_id" - export
VECTARA_API_KEY
="your-vectara-api-key"
Vector Storeβ
There exists a wrapper around the Vectara platform, allowing you to use it as a vectorstore, whether for semantic search or example selection.
To import this vectorstore:
from langchain.vectorstores import Vectara
To create an instance of the Vectara vectorstore:
vectara = Vectara(
vectara_customer_id=customer_id,
vectara_corpus_id=corpus_id,
vectara_api_key=api_key
)
The customer_id, corpus_id and api_key are optional, and if they are not supplied will be read from the environment variables VECTARA_CUSTOMER_ID
, VECTARA_CORPUS_ID
and VECTARA_API_KEY
, respectively.
After you have the vectorstore, you can add_texts
or add_documents
as per the standard VectorStore
interface, for example:
vectara.add_texts(["to be or not to be", "that is the question"])
Since Vectara supports file-upload, we also added the ability to upload files (PDF, TXT, HTML, PPT, DOC, etc) directly as file. When using this method, the file is uploaded directly to the Vectara backend, processed and chunked optimally there, so you don't have to use the LangChain document loader or chunking mechanism.
As an example:
vectara.add_files(["path/to/file1.pdf", "path/to/file2.pdf",...])
To query the vectorstore, you can use the similarity_search
method (or similarity_search_with_score
), which takes a query string and returns a list of results:
results = vectara.similarity_score("what is LangChain?")
similarity_search_with_score
also supports the following additional arguments:
k
: number of results to return (defaults to 5)lambda_val
: the lexical matching factor for hybrid search (defaults to 0.025)filter
: a filter to apply to the results (default None)n_sentence_context
: number of sentences to include before/after the actual matching segment when returning results. This defaults to 2.
The results are returned as a list of relevant documents, and a relevance score of each document.
For a more detailed examples of using the Vectara wrapper, see one of these two sample notebooks: