embedding_model); you can also set it explicitly with the keyword-only dimension parameter. Other optional parameters include metric ("euclidean" default, "cosine", or "squared_euclidean") and storage_precision (float32 default, or float16 to halve the on-disk rerank-vector footprint).
To lift the free-tier 1M-items-per-index cap, pass an API key as the first argument (
cyborgdb.Client(api_key, storage_config=...) in Python; cyborg::Client(api_key, ...) in C++). Get a key from the CyborgDB Admin Dashboard. See Get an API Key.Automatic Embedding Generation
In the Python version of CyborgDB, you can enable automatic embedding generation for the encrypted index by settingembedding_model in create_index():
Python
API Reference
For more information on creating encrypted indexes, refer to the API reference:Python API Reference
API reference for
create_index() in PythonC++ API Reference
API reference for
CreateIndex() in C++