Secure Proxy
When running a vector or hybrid search with Orama (or any other vector database), there is a process called inference.
This term refers to the process of using a trained machine learning model to make predictions on new, unseen data. In the context of a vector or hybrid search, this could involve using the model to transform raw data into a vector representation that can then be used in the search process.
A very popular model is OpenAI’s text-embedding-ada-002
. This model takes a string of maximum 8191
tokens, and returns a vector of 1536
elements, to be used to perform vector search.
When running vector or hybrid search on the front-end, you’ll encounter a problem: the need to call the OpenAI API, which exposes your API Key to the end user. If a malicious user gets a hold of this information, they could generate their own embeddings, or even use other OpenAI API offerings - all at your expense. It’s important to remember that these APIs are not inexpensive!
Because Orama is a vector database that operates client-side, we offer a secure proxy. This allows you to safely and easily call OpenAI, and soon other services, directly from a browser or any other unsecured source.
Enabling the secure proxy
The Orama Secure Proxy is available with the free plan of Orama Cloud. Before you start, make sure to create a free account (no credit card required).
Navigating to https://cloud.orama.com/secure-proxy, you will notice that you’ll need to import an OpenAI API Key before you start. This is required for other services too (such as the automatic embeddings generation). Orama will encrypt this information in a secure vault and will never be able to retrieve it again in plaintext.
By going to https://cloud.orama.com/developer-tools, you’ll be able to insert a new OpenAI API key. Remember, you will never be able to retrieve it again in plaintext.
If you go back to https://cloud.orama.com/secure-proxy, you will see that you can now enable the Orama Secure Proxy.
After activating the Proxy, you will be presented with the following screen. The Secure Proxy Public Key is a public API key that you can include in any of your public-facing API requests.
For security reasons, you can regenerate it at any moment. If needed, you can always shut down the secure proxy by just switching the “disable secure proxy” switch.
Configuring the secure proxy
Once the Orama Secure Proxy is enabled, you can finally configure it. Configurations are real-time, and any change is propagated immediately.
Authorized domains
Configuring the secure proxy is pretty straightforward. First of all, you have to explicit all the domains that are authorized to perform an API call to the proxy.
For example, if you only want to authorize API calls coming from https://orama.com
, write orama.com
and press enter.
Regular expressions are supported, so that you can test the proxy on dynamic environments such as Vercel or Netlify, where URLs are automatically generated based on branch name. Use them wisely!
User-level rate limiter
After each connection to the secure proxy, Orama will identify the user and will perform rate limiting based on the data you’re expressing in the “User rate limit” field.
With the default configuration, users will be able to perform at most 10 requests every 60 seconds. After performing 10 requests, the system will block any further request.
System-level rate limiter
The Orama Secure Proxy will perform a second type of rate limiting operation, based on the number of total requests from any number of users in a given time window.
With this configuration, you can tell the secure proxy to stop proxying to OpenAI after a given number of requests has occurred within a specific timespan.
With the default configuration, the users can perform at most 100 requests every 60 seconds.
Make sure to configure these limits accordingly to your traffic patterns!
Encrypting chat messages and prompts
By selecting the “Encrypt chat messages” option, the Secure Proxy will provide end-to-end encryption for all your messages. This feature helps to protect your custom prompts, which are part of your intellectual property.
Using the Secure Proxy
The Secure Proxy can be used in two ways:
- Using the
@orama/plugin-secure-proxy
npm package (see the official plugin documentation for details). This will allow you to perform hybrid and vector search with your Orama OSS instance with very little configuration. - Using the
@oramacloud/secure-proxy
npm package.
By utilizing the @oramacloud/secure-proxy
npm package, you can generate embeddings and interact with OpenAI’s GPT browser models without exposing your OpenAI API key or prompts to your users.
Generating embeddings
To generate text embeddings, simply import the OramaProxy class, initialize it, and call the generateEmbeddings method:
Available models are:
orama/gte-small
orama/gte-medium
orama/gte-large
openai/text-embedding-ada-002
openai/text-embedding-3-small
openai/text-embedding-3-large
More models and providers will come soon.
Performing chat completion requests
Thanks to the Orama Secure Proxy, you can execute chat completion requests directly from your browsers.
You can accomplish this in two ways: either store the entire response in a single variable, or stream the response from OpenAI using asynchronous iterators.
Using a single variable:
Using async iterators:
In both cases, the available models are:
openai/gpt-4-1106-preview
openai/gpt-4
openai/gpt-3.5-turbo
openai/gpt-3.5-turbo-16k