Show / Hide Table of Contents

Class ConversationConfig

Holds configuration related to conversation retention

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

Properties

ConversationsRetentionInHours

Declaration
[JsonProperty(PropertyName = "conversationsRetentionInHours")]
public int? ConversationsRetentionInHours { get; set; }
Property Value
Type Description
int?

Retention period (in hours) for conversations. The TTL starts from the time the conversation was last updated.

ResponsesRetentionInHours

Declaration
[JsonProperty(PropertyName = "responsesRetentionInHours")]
public int? ResponsesRetentionInHours { get; set; }
Property Value
Type Description
int?

Retention period (in hours) for responses. The TTL starts from the time the response was created.

In this article
Back to top