Show / Hide Table of Contents

Class GenerateTextResult

The generated text result to return.

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

Properties

InferenceResponse

Declaration
[Required(ErrorMessage = "InferenceResponse is required.")]
[JsonProperty(PropertyName = "inferenceResponse")]
public LlmInferenceResponse InferenceResponse { get; set; }
Property Value
Type Description
LlmInferenceResponse
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 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