Show / Hide Table of Contents

Class ChatDetails

Details of the conversation for the model to respond.

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

Properties

ChatRequest

Declaration
[Required(ErrorMessage = "ChatRequest is required.")]
[JsonProperty(PropertyName = "chatRequest")]
public BaseChatRequest ChatRequest { get; set; }
Property Value
Type Description
BaseChatRequest
Remarks

Required

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of compartment in which to call the Generative AI service to chat.

Remarks

Required

ServingMode

Declaration
[Required(ErrorMessage = "ServingMode is required.")]
[JsonProperty(PropertyName = "servingMode")]
public ServingMode ServingMode { get; set; }
Property Value
Type Description
ServingMode
Remarks

Required

In this article
Back to top