Condividi tramite


AzureAIProjectsModelFactory.MemoryStoreSearchResponse Method

Definition

Overloads

MemoryStoreSearchResponse(String, IEnumerable<MemorySearchItem>, MemoryStoreOperationUsage)

Source:
AzureAIProjectsModelFactory.cs

Memory search response.

public static Azure.AI.Projects.Memory.MemoryStoreSearchResponse MemoryStoreSearchResponse(string searchId = default, System.Collections.Generic.IEnumerable<Azure.AI.Projects.Memory.MemorySearchItem> memories = default, Azure.AI.Projects.Memory.MemoryStoreOperationUsage usage = default);
static member MemoryStoreSearchResponse : string * seq<Azure.AI.Projects.Memory.MemorySearchItem> * Azure.AI.Projects.Memory.MemoryStoreOperationUsage -> Azure.AI.Projects.Memory.MemoryStoreSearchResponse
Public Shared Function MemoryStoreSearchResponse (Optional searchId As String = Nothing, Optional memories As IEnumerable(Of MemorySearchItem) = Nothing, Optional usage As MemoryStoreOperationUsage = Nothing) As MemoryStoreSearchResponse

Parameters

searchId
String

The unique ID of this search request. Use this value as previous_search_id in subsequent requests to perform incremental searches.

memories
IEnumerable<MemorySearchItem>

Related memory items found during the search operation.

usage
MemoryStoreOperationUsage

Usage statistics associated with the memory search operation.

Returns

A new MemoryStoreSearchResponse instance for mocking.

Applies to

MemoryStoreSearchResponse(String, IEnumerable<MemorySearchItem>, MemoryStoreOperationUsage)

Source:
AzureAIProjectsModelFactory.cs

Memory search response.

public static Azure.AI.Projects.MemoryStoreSearchResponse MemoryStoreSearchResponse(string searchId = default, System.Collections.Generic.IEnumerable<Azure.AI.Projects.MemorySearchItem> memories = default, Azure.AI.Projects.MemoryStoreOperationUsage usage = default);
static member MemoryStoreSearchResponse : string * seq<Azure.AI.Projects.MemorySearchItem> * Azure.AI.Projects.MemoryStoreOperationUsage -> Azure.AI.Projects.MemoryStoreSearchResponse
Public Shared Function MemoryStoreSearchResponse (Optional searchId As String = Nothing, Optional memories As IEnumerable(Of MemorySearchItem) = Nothing, Optional usage As MemoryStoreOperationUsage = Nothing) As MemoryStoreSearchResponse

Parameters

searchId
String

The unique ID of this search request. Use this value as previous_search_id in subsequent requests to perform incremental searches.

memories
IEnumerable<MemorySearchItem>

Related memory items found during the search operation.

usage
MemoryStoreOperationUsage

Usage statistics associated with the memory search operation.

Returns

A new MemoryStoreSearchResponse instance for mocking.

Applies to