Codeunit "AOAI User Message"
ID 7783
Namespace: System.AI
Represents a user message with structured content parts for multimodal inputs. Use AddTextPart and AddFilePart to build the message content, then pass this codeunit to AOAIChatMessages.AddUserMessage.
Properties
| Name | Value |
|---|---|
| Access | Public |
| InherentEntitlements | X |
| InherentPermissions | X |
Methods
AddTextPart
Adds a text content part to the user message.
procedure AddTextPart(TextContent: Text)
Parameters
| Name | Type | Description |
|---|---|---|
| TextContent | Text |
The text content to add. |
AddFilePart
Adds a file content part to the user message.
procedure AddFilePart(FileData: Text)
Parameters
| Name | Type | Description |
|---|---|---|
| FileData | Text |
The file data to add (e.g. base64-encoded content). |