Show / Hide Table of Contents

Class CohereToolResult

The result from invoking tools recommended by the model in the previous chat turn.

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

Properties

Call

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

Required

Outputs

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

An array of objects returned by tool.

Remarks

Required

In this article
Back to top