PreciseSearch Quickstart
This guide will show you how to get started with PreciseSearch.
Code for this quickstart
You can find and run the code for this quickstart in Colab Notebook
1. Install the SDK
PreciseSearch is a search-as-a-service product by VectorStackAI, designed to provide vector search capabilities. Currently, we offer a Python SDK to interact with the PreciseSearch service. To get started, install the VectorStackAI Python SDK using pip:
2. Get an API key
You will need an API key to use the SDK. You can get it by signing up on the VectorStackAI website.
3. Create an index
PreciseSearch supports two types of indexes: Dense Indexes and Hybrid Indexes. Dense indexes search over dense vector representations of the data, where as hybrid indexes search over a combination of dense and sparse representations of the data.
In this quickstart, you will create a dense index with an integrated embedding model (hosted by VectorStackAI). With dense indexes configured with an integrated embedding model, during upsert and search, you only need to provide the text data. PreciseSearch will generate the dense vector representations of the data automatically.
Learn More
To read about the different types of indexes you can create with PreciseSearch, see the Creating Indexes guide.
4. Upsert Data into the Index
To upsert data into the index, you need to provide the text data and assign a unique ID to each data point.
For this example, let's create a dataset with 10 random facts about food and history.
The index info will look like this:
index_name: my_dense_index
num_records: 10
dimension: 384
metric: dotproduct
features_type: dense
status: ready
embedding_model_name: e5-small-v2
optimized_for_latency: False
Learn More
For more details, see the How-To Guide on Upserting Data.
5. Search the index
Now that you have your index ready, you can search it. In this example, you will search the index for the query "Where was pizza invented?".
Since the index is configured with an integrated embedding model, you only need to provide the query text.
ID: 7, Similarity: 0.90, Text: Pizza was invented in Naples, Italy in the late 1700s. The classic Margherita pizza was created in 1889.
ID: 3, Similarity: 0.85, Text: The first chocolate bar was made in England by Fry's in 1847, marking the beginning of the modern chocolate industry.
ID: 5, Similarity: 0.80, Text: The Great Wall of China took over 2000 years to build, with construction starting in the 7th century BCE.
ID: 1, Similarity: 0.75, Text: The shortest war in history was between Britain and Zanzibar on August 27, 1896. Zanzibar surrendered after just 38 minutes.
Learn More
For more details, see the How-To Guide on Searching the Index.
6. Clean up
Once you are done with the quickstart, you can delete the index.