CyborgDB follows a bi-monthly release cadence, with new features, enhancements, and bug fixes released every even month (Feb, Apr, etc). This changelog provides a summary of the changes in each release.
cyborgdb-service
)cyborg/cyborgdb-service
)pip install cyborgdb-core[langchain]
from cyborgdb_core.integrations.langchain import CyborgVectorStore
cyborgdb-core
and cyborgdb-lite
load_index()
query()
recall issues on Linuxget()
in C++ and Python APIsDeployment Model: Core Library (Python & C++)
upsert()
calls can generate embeddings directly from index contentsquery()
calls can use the model to generate embeddings for query vectorsstring
-type (instead of int
)
upsert()
, get()
and query()
function signaturesget_item()
and get_items()
have been replaced by get()
Deployment Model: Core Library (Python & C++)
upsert()
calls can take item content as bytes, encrypt and store them in the indexget_item()
calls can retrieve encrypted item content and decrypt themmax_cache_size
parameter)EncryptedIndex
objectsClient
class now handles DB backend connection, index creation and loadingEncryptedIndex
class now handles data operations (e.g., upsert()
, query()
, etc.)