Interface IEmbeddingSchema

Interface representing the schema for configuring an embedding mechanism. Defines how embeddings are created and compared within the swarm.

interface IEmbeddingSchema {
    callbacks?: Partial<IEmbeddingCallbacks>;
    embeddingName: string;
    persist?: boolean;
    readEmbeddingCache?: (
        embeddingName: string,
        stringHash: string,
    ) => number[] | Promise<number[]>;
    writeEmbeddingCache?: (
        embeddings: number[],
        embeddingName: string,
        stringHash: string,
    ) => void | Promise<void>;
    calculateSimilarity(a: Embeddings, b: Embeddings): Promise<number>;
    createEmbedding(text: string, embeddingName: string): Promise<Embeddings>;
}

Properties

callbacks?: Partial<IEmbeddingCallbacks>

Optional partial set of callbacks for embedding events, allowing customization of creation and comparison.

embeddingName: string

The unique name of the embedding mechanism within the swarm.

persist?: boolean

Optional flag to enable serialization of navigation stack and active agent state to persistent storage (e.g., hard drive).

readEmbeddingCache?: (
    embeddingName: string,
    stringHash: string,
) => number[] | Promise<number[]>

Retrieves the embedding vector for a specific string hash, returning null if not found. Used to check if a precomputed embedding exists in the cache.

Type declaration

    • (embeddingName: string, stringHash: string): number[] | Promise<number[]>
    • Parameters

      • embeddingName: string

        The identifier of the embedding type.

      • stringHash: string

        The hash of the string for which the embedding was generated.

      Returns number[] | Promise<number[]>

      A promise resolving to the embedding vector or null if not cached.

If reading from storage fails (e.g., file corruption).

writeEmbeddingCache?: (
    embeddings: number[],
    embeddingName: string,
    stringHash: string,
) => void | Promise<void>

Stores an embedding vector for a specific string hash, persisting it for future retrieval. Used to cache computed embeddings to avoid redundant processing.

Type declaration

    • (
          embeddings: number[],
          embeddingName: string,
          stringHash: string,
      ): void | Promise<void>
    • Parameters

      • embeddings: number[]

        Array of numerical values representing the embedding vector.

      • embeddingName: string

        The identifier of the embedding type.

      • stringHash: string

        The hash of the string for which the embedding was generated.

      Returns void | Promise<void>

      A promise that resolves when the embedding vector is persisted.

If writing to storage fails (e.g., permissions or disk space).

Methods

  • Calculates the similarity between two embeddings. Commonly used for search or ranking operations (e.g., cosine similarity).

    Parameters

    • a: Embeddings

      The first embedding to compare.

    • b: Embeddings

      The second embedding to compare.

    Returns Promise<number>

    A promise resolving to the similarity score (typically between -1 and 1).

    If similarity calculation fails (e.g., due to invalid embeddings or computation errors).

  • Creates an embedding from the provided text. Typically used for indexing or search operations in storage.

    Parameters

    • text: string

      The text to encode into an embedding.

    • embeddingName: string

    Returns Promise<Embeddings>

    A promise resolving to the generated embedding as an array of numbers.

    If embedding creation fails (e.g., due to invalid text or model errors).