interface ChatsMessagesInput {
    content?: string | Record<string, any>;
    name?: string;
    role: string;
}

Properties

Properties

content?: string | Record<string, any>

Content of a user message.

name?: string

Name of a function to call or a participant of conversation to establish difference

role: string

Role of the messages author.