Class MessageContent
- Namespace
- FoundationaLLM.Common.Models.Conversation
- Assembly
- FoundationaLLM.Common.dll
Contains parts that compose the message content.
public class MessageContent
- Inheritance
-
MessageContent
- Inherited Members
- Extension Methods
Properties
FileName
The file name related to the Value, if applicable.
[JsonPropertyName("fileName")]
public string? FileName { get; set; }
Property Value
Type
The type of the message content. Could be text, image, etc.
[JsonPropertyName("type")]
public string? Type { get; set; }
Property Value
Value
The value of the message content.
[JsonPropertyName("value")]
public string? Value { get; set; }