ExtensionsOpenAIModelFactory.MemoryOutputItem Method

Definition

A single memory item stored in the memory store, containing content and metadata. Please note this is the abstract base class. The derived classes available for instantiation are: UserProfileMemoryItem, ChatSummaryMemoryItem, and ProceduralMemoryItem.

public static Azure.AI.Extensions.OpenAI.MemoryOutputItem MemoryOutputItem(string memoryId = default, DateTimeOffset updatedAt = default, string scope = default, string content = default, string kind = default);
static member MemoryOutputItem : string * DateTimeOffset * string * string * string -> Azure.AI.Extensions.OpenAI.MemoryOutputItem
Public Shared Function MemoryOutputItem (Optional memoryId As String = Nothing, Optional updatedAt As DateTimeOffset = Nothing, Optional scope As String = Nothing, Optional content As String = Nothing, Optional kind As String = Nothing) As MemoryOutputItem

Parameters

memoryId
String

The unique ID of the memory item.

updatedAt
DateTimeOffset

The last update time of the memory item.

scope
String

The namespace that logically groups and isolates memories, such as a user ID.

content
String

The content of the memory.

kind
String

The kind of the memory item.

Returns

A new MemoryOutputItem instance for mocking.

Applies to