Show / Hide Table of Contents

Class StandardLongTermMemoryStrategy

Standard strategy settings for long-term memory.

Inheritance
object
StandardLongTermMemoryStrategy
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiService.Models
Assembly: OCI.DotNetSDK.Generativeai.dll
Syntax
public class StandardLongTermMemoryStrategy

Properties

EmbeddingConfig

Declaration
[JsonProperty(PropertyName = "embeddingConfig")]
public EmbeddingConfig EmbeddingConfig { get; set; }
Property Value
Type Description
EmbeddingConfig

ExtractionConfig

Declaration
[JsonProperty(PropertyName = "extractionConfig")]
public ExtractionConfig ExtractionConfig { get; set; }
Property Value
Type Description
ExtractionConfig

IsEnabled

Declaration
[Required(ErrorMessage = "IsEnabled is required.")]
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Indicates whether long-term memory is enabled.

Remarks

Required

In this article
Back to top