Share via


MemoryStoreDefaultOptions Constructors

Definition

Overloads

MemoryStoreDefaultOptions()

Source:
MemoryStoreDefaultOptions.cs

Initializes a new instance of MemoryStoreDefaultOptions for deserialization.

public MemoryStoreDefaultOptions();
Public Sub New ()

Applies to

MemoryStoreDefaultOptions(Boolean, Boolean)

Source:
MemoryStoreDefaultOptions.cs

Initializes a new instance of MemoryStoreDefaultOptions.

public MemoryStoreDefaultOptions(bool userProfileEnabled, bool chatSummaryEnabled);
new Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryStoreDefaultOptions : bool * bool -> Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryStoreDefaultOptions
Public Sub New (userProfileEnabled As Boolean, chatSummaryEnabled As Boolean)

Parameters

userProfileEnabled
Boolean

Whether to enable user profile extraction and storage. Default is true.

chatSummaryEnabled
Boolean

Whether to enable chat summary extraction and storage. Default is true.

Applies to

MemoryStoreDefaultOptions(Boolean, String, Boolean, IDictionary<String,BinaryData>)

Source:
MemoryStoreDefaultOptions.cs

Initializes a new instance of MemoryStoreDefaultOptions.

public MemoryStoreDefaultOptions(bool userProfileEnabled, string userProfileDetails, bool chatSummaryEnabled, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData);
new Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryStoreDefaultOptions : bool * string * bool * System.Collections.Generic.IDictionary<string, BinaryData> -> Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryStoreDefaultOptions
Public Sub New (userProfileEnabled As Boolean, userProfileDetails As String, chatSummaryEnabled As Boolean, serializedAdditionalRawData As IDictionary(Of String, BinaryData))

Parameters

userProfileEnabled
Boolean

Whether to enable user profile extraction and storage. Default is true.

userProfileDetails
String

Specific categories or types of user profile information to extract and store.

chatSummaryEnabled
Boolean

Whether to enable chat summary extraction and storage. Default is true.

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

Applies to