Class SummarizeTextResult
Summarize text result to return to caller.
Inherited Members
Namespace: Oci.GenerativeaiinferenceService.Models
Assembly: OCI.DotNetSDK.Generativeaiinference.dll
Syntax
public class SummarizeTextResultProperties
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