Show / Hide Table of Contents

Class CohereUserMessage

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

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

Properties

Message

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

Contents of the chat message.

Remarks

Required

In this article
Back to top