Share via


MemorySearchToolCallItemParam Constructors

Definition

Overloads

MemorySearchToolCallItemParam()

Source:
MemorySearchToolCallItemParam.cs

Initializes a new instance of MemorySearchToolCallItemParam.

public MemorySearchToolCallItemParam();
Public Sub New ()

Applies to

MemorySearchToolCallItemParam(ItemType, IDictionary<String,BinaryData>, IList<MemorySearchItem>)

Source:
MemorySearchToolCallItemParam.cs

Initializes a new instance of MemorySearchToolCallItemParam.

public MemorySearchToolCallItemParam(Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType type, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, System.Collections.Generic.IList<Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchItem> results);
new Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchToolCallItemParam : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType * System.Collections.Generic.IDictionary<string, BinaryData> * System.Collections.Generic.IList<Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchItem> -> Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchToolCallItemParam
Public Sub New (type As ItemType, serializedAdditionalRawData As IDictionary(Of String, BinaryData), results As IList(Of MemorySearchItem))

Parameters

type
ItemType
serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

results
IList<MemorySearchItem>

The results returned from the memory search.

Applies to