ExtensionsOpenAIModelFactory.MemorySearchToolCall Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A memory search tool call.
public static Azure.AI.Extensions.OpenAI.MemorySearchToolCall MemorySearchToolCall(string id = default, Azure.AI.Extensions.OpenAI.AgentReference agentReference = default, string responseId = default, Azure.AI.Extensions.OpenAI.ToolCallStatus status = Azure.AI.Extensions.OpenAI.ToolCallStatus.InProgress, System.Collections.Generic.IEnumerable<Azure.AI.Extensions.OpenAI.MemoryOutputItem> memories = default);
static member MemorySearchToolCall : string * Azure.AI.Extensions.OpenAI.AgentReference * string * Azure.AI.Extensions.OpenAI.ToolCallStatus * seq<Azure.AI.Extensions.OpenAI.MemoryOutputItem> -> Azure.AI.Extensions.OpenAI.MemorySearchToolCall
Public Shared Function MemorySearchToolCall (Optional id As String = Nothing, Optional agentReference As AgentReference = Nothing, Optional responseId As String = Nothing, Optional status As ToolCallStatus = Azure.AI.Extensions.OpenAI.ToolCallStatus.InProgress, Optional memories As IEnumerable(Of MemoryOutputItem) = Nothing) As MemorySearchToolCall
Parameters
- id
- String
- agentReference
- AgentReference
The agent that created the item.
- responseId
- String
The response on which the item is created.
- status
- ToolCallStatus
The status of the tool call.
- memories
- IEnumerable<MemoryOutputItem>
The results returned from the memory search.
Returns
A new MemorySearchToolCall instance for mocking.