Adds a new embedding engine to the embedding registry for use within the swarm system.

This function registers a new embedding engine, enabling the swarm to utilize it for tasks such as vector generation or similarity comparisons. Only embeddings registered through this function are recognized by the swarm. The execution is wrapped in beginContext to ensure it runs outside of existing method and execution contexts, providing a clean execution environment. The function logs the operation if enabled and returns the embedding's name upon successful registration.

If the embedding schema is invalid or if registration fails due to conflicts or service errors (e.g., duplicate embedding name).

const embeddingSchema = { embeddingName: "TextEmbedder", model: "bert-base" };
const embeddingName = addEmbedding(embeddingSchema);
console.log(embeddingName); // Outputs "TextEmbedder"
  • Parameters

    • embeddingSchema: IEmbeddingSchema

      The schema defining the embedding engine's properties, including its name (embeddingName) and configuration details.

    Returns string

    The name of the newly added embedding (embeddingSchema.embeddingName), confirming its registration.