Quick Start
Let's see how we can quickly use citrus to index texts and perform semantic search!
We'll only focus on the core citrusdb functions. For production, you'd likely implement the same on a server. Tutorials for that coming soon!
Install the library
Create an index
Before we can insert vectors, we need to create an index.
This will create a client for interacting with our index. We then create the index itself with a name my_index
. Check out the API reference later to find how you can play around with this.
We're also choosing to persist our data inside the citrus
directory. This will ensure that our data remains saved and in the future, citrusdb can load the index from there.
Insert elements
You can directly pass vector embeddings as well. If you're passing a list of strings like we have done here, ensure you have your OPENAI_API_KEY
in the environment. By default we use OpenAI to generate the embeddings. Please reach out if you're looking for support from a different provider (or submit a PR 😉)!
If you're using a different embedding model, you can insert that vector directly. Please ensure that you create the index with the same dimension as that of your vector embedding.
Semantic Search
After inserting elements, we can perform semantic search to retrieve similar documents. Here's an example of performing a semantic search:
You can specify if you want the associated text document to be returned or not. By default, only the IDs are returned.
Sweet! Now it's time for you to build your thing.
Last updated