Show / Hide Table of Contents

Class ChatResult

The response to the chat conversation.

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

Properties

ChatResponse

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

Required

ModelId

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

The OCID of the model that's used in this inference request.

Remarks

Required

ModelVersion

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

The version of the model.

Remarks

Required

In this article
Back to top