Show / Hide Table of Contents

Class CohereToolMessage

A message that represents a single chat dialog as TOOL role.

Inheritance
object
CohereMessage
CohereToolMessage
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 CohereToolMessage : CohereMessage

Properties

ToolResults

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

A list of results from invoking tools recommended by the model in the previous chat turn.

Remarks

Required

In this article
Back to top