Show / Hide Table of Contents

Class ShortTermMemoryOptimizationConfig

Configuration settings for short-term memory optimization.

Inheritance
object
ShortTermMemoryOptimizationConfig
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 ShortTermMemoryOptimizationConfig

Properties

CondenserConfig

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

IsEnabled

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

Indicates whether short-term memory optimization is enabled.

Remarks

Required

In this article
Back to top