Show / Hide Table of Contents

Class CohereAssistantMessageV2

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

Inheritance
object
CohereMessageV2
CohereAssistantMessageV2
Inherited Members
CohereMessageV2.Content
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 CohereAssistantMessageV2 : CohereMessageV2

Properties

Citations

Declaration
[JsonProperty(PropertyName = "citations")]
public List<CohereCitationV2> Citations { get; set; }
Property Value
Type Description
List<CohereCitationV2>

Cohere citations

ToolCalls

Declaration
[JsonProperty(PropertyName = "toolCalls")]
public List<CohereToolCallV2> ToolCalls { get; set; }
Property Value
Type Description
List<CohereToolCallV2>

A list of tool calls generated by the model.

ToolPlan

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

A chain-of-thought style reflection and plan that the model generates when working with Tools.

In this article
Back to top