docs.rs failed to build blazen-memory-0.1.131
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
blazen-memory-0.1.121
blazen-memory
Memory and vector store for Blazen with ELID integration.
This crate provides a memory store that can operate in two modes:
-
Full mode: Uses an
EmbeddingModelto generate embeddings, encodes them with ELID into compact sortable identifiers, and uses LSH (Locality-Sensitive Hashing) bands for efficient approximate nearest-neighbor retrieval. -
Local mode: Uses string-level
SimHashfor lightweight similarity search without requiring an embedding model.
Quick start
use ;
use Arc;
# async
Local-only mode
use ;
# async