Package version:

Interface AISearchIndexResource

A AI Search Index resource.

interface AISearchIndexResource {
    filter?: string;
    indexAssetId?: string;
    indexConnectionId: string;
    indexName: string;
    queryType?: AzureAISearchQueryType;
    topK?: number;
}

Properties

filter?: string

filter string for search resource.

indexAssetId?: string

Index asset id for search resource.

indexConnectionId: string

An index connection id in an IndexResource attached to this agent.

indexName: string

The name of an index in an IndexResource attached to this agent.

Type of query in an AIIndexResource attached to this agent.

topK?: number

Number of documents to retrieve from search and present to the model.