Interface AssistantMessageUserData

Data of messages that were added to the conversation by a user.

interface AssistantMessageUserData {
    author?: User;
    content: AssistantMessageUserContent;
}

Properties

Properties

author?: User

The author whom has created this message, can be undefined because of permissions.

The content of a message posted by a user.