Show / Hide Table of Contents

Class SummarizeTextResult

Summarize text result to return to caller.

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

Properties

Id

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

A unique identifier for this SummarizeTextResult.

Remarks

Required

Input

Declaration
[JsonProperty(PropertyName = "input")]
public string Input { get; set; }
Property Value
Type Description
string

The original input. Only included if "isEcho" set to true.

ModelId

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

The OCID of the model used in this inference request.

ModelVersion

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

The version of the model.

Summary

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

Summary result corresponding to input.

Remarks

Required

In this article
Back to top