ExtensionsOpenAIModelFactory.ResponsesMemorySearchPreviewTool Method

Definition

A tool for integrating memories into the agent.

public static Azure.AI.Extensions.OpenAI.ResponsesMemorySearchPreviewTool ResponsesMemorySearchPreviewTool(string memoryStoreName = default, string scope = default, Azure.AI.Extensions.OpenAI.ResponsesMemorySearchOptions searchOptions = default, int? updateDelayInSeconds = default);
static member ResponsesMemorySearchPreviewTool : string * string * Azure.AI.Extensions.OpenAI.ResponsesMemorySearchOptions * Nullable<int> -> Azure.AI.Extensions.OpenAI.ResponsesMemorySearchPreviewTool
Public Shared Function ResponsesMemorySearchPreviewTool (Optional memoryStoreName As String = Nothing, Optional scope As String = Nothing, Optional searchOptions As ResponsesMemorySearchOptions = Nothing, Optional updateDelayInSeconds As Nullable(Of Integer) = Nothing) As ResponsesMemorySearchPreviewTool

Parameters

memoryStoreName
String

The name of the memory store to use.

scope
String

The namespace used to group and isolate memories, such as a user ID. Limits which memories can be retrieved or updated. Use special variable {{$userId}} to scope memories to the current signed-in user.

searchOptions
ResponsesMemorySearchOptions

Options for searching the memory store.

updateDelayInSeconds
Nullable<Int32>

Time to wait before updating memories after inactivity (seconds). Default 300.

Returns

A new ResponsesMemorySearchPreviewTool instance for mocking.

Applies to