Package version:

Interface AzureBlobKnowledgeSourceParams

Specifies runtime parameters for a azure blob knowledge source

interface AzureBlobKnowledgeSourceParams {
    alwaysQuerySource?: boolean;
    includeReferences?: boolean;
    includeReferenceSourceData?: boolean;
    kind: "azureBlob";
    knowledgeSourceName: string;
    rerankerThreshold?: number;
}

Hierarchy (view full)

Properties

alwaysQuerySource?: boolean

Indicates that this knowledge source should bypass source selection and always be queried at retrieval time.

includeReferences?: boolean

Indicates whether references should be included for data retrieved from this source.

includeReferenceSourceData?: boolean

Indicates whether references should include the structured data obtained during retrieval in their payload.

kind

Polymorphic discriminator, which specifies the different types this object can be

knowledgeSourceName: string

The name of the index the params apply to.

rerankerThreshold?: number

The reranker threshold all retrieved documents must meet to be included in the response.