Optional
callbacksOptional partial set of callbacks for embedding events, allowing customization of creation and comparison.
The unique name of the embedding mechanism within the swarm.
Optional
persistOptional flag to enable serialization of navigation stack and active agent state to persistent storage (e.g., hard drive).
Optional
readRetrieves the embedding vector for a specific string hash, returning null if not found. Used to check if a precomputed embedding exists in the cache.
The identifier of the embedding type.
The hash of the string for which the embedding was generated.
A promise resolving to the embedding vector or null if not cached.
Optional
writeStores an embedding vector for a specific string hash, persisting it for future retrieval. Used to cache computed embeddings to avoid redundant processing.
Array of numerical values representing the embedding vector.
The identifier of the embedding type.
The hash of the string for which the embedding was generated.
A promise that resolves when the embedding vector is persisted.
Calculates the similarity between two embeddings. Commonly used for search or ranking operations (e.g., cosine similarity).
The first embedding to compare.
The second embedding to compare.
A promise resolving to the similarity score (typically between -1 and 1).
Creates an embedding from the provided text. Typically used for indexing or search operations in storage.
The text to encode into an embedding.
A promise resolving to the generated embedding as an array of numbers.
Interface representing the schema for configuring an embedding mechanism. Defines how embeddings are created and compared within the swarm.