AIProjectMemoryStores.UpdateMemoriesAsync 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.
Overloads
| Name | Description |
|---|---|
| UpdateMemoriesAsync(String, MemoryUpdateOptions, CancellationToken) | |
| UpdateMemoriesAsync(String, BinaryContent, RequestOptions) |
[Protocol Method] Update memory store with conversation memories.
|
UpdateMemoriesAsync(String, MemoryUpdateOptions, CancellationToken)
- Source:
- AIProjectMemoryStores.cs
- Source:
- AIProjectMemoryStores.cs
public virtual System.Threading.Tasks.Task<System.ClientModel.ClientResult<Azure.AI.Projects.Memory.MemoryUpdateResult>> UpdateMemoriesAsync(string memoryStoreName, Azure.AI.Projects.Memory.MemoryUpdateOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member UpdateMemoriesAsync : string * Azure.AI.Projects.Memory.MemoryUpdateOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.ClientModel.ClientResult<Azure.AI.Projects.Memory.MemoryUpdateResult>>
override this.UpdateMemoriesAsync : string * Azure.AI.Projects.Memory.MemoryUpdateOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.ClientModel.ClientResult<Azure.AI.Projects.Memory.MemoryUpdateResult>>
Public Overridable Function UpdateMemoriesAsync (memoryStoreName As String, options As MemoryUpdateOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ClientResult(Of MemoryUpdateResult))
Parameters
- memoryStoreName
- String
- options
- MemoryUpdateOptions
- cancellationToken
- CancellationToken
Returns
Applies to
UpdateMemoriesAsync(String, BinaryContent, RequestOptions)
- Source:
- AIProjectMemoryStores.cs
- Source:
- AIProjectMemoryStores.cs
[Protocol Method] Update memory store with conversation memories.
- This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual System.Threading.Tasks.Task<System.ClientModel.ClientResult> UpdateMemoriesAsync(string name, System.ClientModel.BinaryContent content, System.ClientModel.Primitives.RequestOptions options = default);
abstract member UpdateMemoriesAsync : string * System.ClientModel.BinaryContent * System.ClientModel.Primitives.RequestOptions -> System.Threading.Tasks.Task<System.ClientModel.ClientResult>
override this.UpdateMemoriesAsync : string * System.ClientModel.BinaryContent * System.ClientModel.Primitives.RequestOptions -> System.Threading.Tasks.Task<System.ClientModel.ClientResult>
Public Overridable Function UpdateMemoriesAsync (name As String, content As BinaryContent, Optional options As RequestOptions = Nothing) As Task(Of ClientResult)
Parameters
- name
- String
The name of the memory store to update.
- content
- BinaryContent
The content to send as the body of the request.
- options
- RequestOptions
The request options, which can override default behaviors of the client pipeline on a per-call basis.
Returns
The response returned from the service.
Exceptions
name or content is null.
name is an empty string, and was expected to be non-empty.
Service returned a non-success status code.