Interface for the arguments required to initialize an AmazonKendraRetriever instance.

interface AmazonKendraRetrieverArgs {
    indexId: string;
    region: string;
    topK: number;
    attributeFilter?: AttributeFilter;
    clientOptions?: KendraClientConfig;
}

Properties

indexId: string
region: string
topK: number
attributeFilter?: AttributeFilter
clientOptions?: KendraClientConfig

Generated using TypeDoc