MemorySearchToolCallItemResource Constructors
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.
Overloads
| Name | Description |
|---|---|
| MemorySearchToolCallItemResource() |
Initializes a new instance of MemorySearchToolCallItemResource for deserialization. |
| MemorySearchToolCallItemResource(String, MemorySearchToolCallItemResourceStatus) |
Initializes a new instance of MemorySearchToolCallItemResource. |
| MemorySearchToolCallItemResource(ItemType, String, CreatedBy, IDictionary<String,BinaryData>, MemorySearchToolCallItemResourceStatus, IReadOnlyList<MemorySearchItem>) |
Initializes a new instance of MemorySearchToolCallItemResource. |
MemorySearchToolCallItemResource()
Initializes a new instance of MemorySearchToolCallItemResource for deserialization.
public MemorySearchToolCallItemResource();
Public Sub New ()
Applies to
MemorySearchToolCallItemResource(String, MemorySearchToolCallItemResourceStatus)
Initializes a new instance of MemorySearchToolCallItemResource.
public MemorySearchToolCallItemResource(string id, Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchToolCallItemResourceStatus status);
new Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchToolCallItemResource : string * Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchToolCallItemResourceStatus -> Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchToolCallItemResource
Public Sub New (id As String, status As MemorySearchToolCallItemResourceStatus)
Parameters
- id
- String
The status of the memory search tool call. One of in_progress,
searching, completed, incomplete or failed,
Exceptions
id is null.
Applies to
MemorySearchToolCallItemResource(ItemType, String, CreatedBy, IDictionary<String,BinaryData>, MemorySearchToolCallItemResourceStatus, IReadOnlyList<MemorySearchItem>)
Initializes a new instance of MemorySearchToolCallItemResource.
public MemorySearchToolCallItemResource(Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType type, string id, Azure.AI.AgentServer.Contracts.Generated.OpenAI.CreatedBy createdBy, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchToolCallItemResourceStatus status, System.Collections.Generic.IReadOnlyList<Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchItem> results);
new Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchToolCallItemResource : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType * string * Azure.AI.AgentServer.Contracts.Generated.OpenAI.CreatedBy * System.Collections.Generic.IDictionary<string, BinaryData> * Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchToolCallItemResourceStatus * System.Collections.Generic.IReadOnlyList<Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchItem> -> Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemorySearchToolCallItemResource
Public Sub New (type As ItemType, id As String, createdBy As CreatedBy, serializedAdditionalRawData As IDictionary(Of String, BinaryData), status As MemorySearchToolCallItemResourceStatus, results As IReadOnlyList(Of MemorySearchItem))
Parameters
- type
- ItemType
- id
- String
- createdBy
- CreatedBy
The information about the creator of the item.
- serializedAdditionalRawData
- IDictionary<String,BinaryData>
Keeps track of any properties unknown to the library.
The status of the memory search tool call. One of in_progress,
searching, completed, incomplete or failed,
- results
- IReadOnlyList<MemorySearchItem>
The results returned from the memory search.