Interface for the fields required during the initialization of a MetalRetriever instance. It extends the BaseRetrieverInput interface and adds a client field of type Metal.

interface MetalRetrieverFields {
    callbacks?: Callbacks;
    client: MetalSDK;
    metadata?: Record<string, unknown>;
    tags?: string[];
    verbose?: boolean;
}

Hierarchy

  • BaseRetrieverInput
    • MetalRetrieverFields

Properties

callbacks?: Callbacks
client: MetalSDK
metadata?: Record<string, unknown>
tags?: string[]
verbose?: boolean