Show / Hide Table of Contents

Class CohereChatBotMessage

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

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

Properties

Message

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

Contents of the chat message.

ToolCalls

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

A list of tool calls generated by the model.

In this article
Back to top