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.
Throws
If the embedding schema is invalid or if registration fails due to conflicts or service errors (e.g., duplicate embedding name).
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.Throws
If the embedding schema is invalid or if registration fails due to conflicts or service errors (e.g., duplicate embedding name).
Example