Class MessageContent
The content of the message.
Inherited Members
Namespace: Oci.GenerativeaiagentruntimeService.Models
Assembly: OCI.DotNetSDK.Generativeaiagentruntime.dll
Syntax
public class MessageContent
Properties
Citations
Declaration
[JsonProperty(PropertyName = "citations")]
public List<Citation> Citations { get; set; }
Property Value
Type | Description |
---|---|
List<Citation> | Citations to data sources used for generating an agent's message. |
ParagraphCitations
Declaration
[JsonProperty(PropertyName = "paragraphCitations")]
public List<ParagraphCitation> ParagraphCitations { get; set; }
Property Value
Type | Description |
---|---|
List<ParagraphCitation> | A list of citations used to generate the paragraphs of the agent message. |
Text
Declaration
[Required(ErrorMessage = "Text is required.")]
[JsonProperty(PropertyName = "text")]
public string Text { get; set; }
Property Value
Type | Description |
---|---|
string | The content of the message. |
Remarks
Required