Show / Hide Table of Contents

Class Message

A message that represents a single chat dialog.

Inheritance
object
Message
AssistantMessage
SystemMessage
ToolMessage
UserMessage
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
[JsonConverter(typeof(MessageModelConverter))]
public class Message

Properties

Content

Declaration
[JsonProperty(PropertyName = "content")]
public List<ChatContent> Content { get; set; }
Property Value
Type Description
List<ChatContent>

Contents of the chat message.

In this article
Back to top