Show / Hide Table of Contents

Class LlamaLlmInferenceResponse

The generated text result to return.

Inheritance
object
LlmInferenceResponse
LlamaLlmInferenceResponse
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 LlamaLlmInferenceResponse : LlmInferenceResponse

Properties

Choices

Declaration
[Required(ErrorMessage = "Choices is required.")]
[JsonProperty(PropertyName = "choices")]
public List<Choice> Choices { get; set; }
Property Value
Type Description
List<Choice>

A list of generated texts. Can be more than one if n is greater than 1.

Remarks

Required

Created

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

The Unix timestamp (in seconds) of when the generation was created.

Remarks

Required

In this article
Back to top