You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although specified in typing, these options will result in no behaviour nor visual changes:
type MessageOptions<AiMsg = string> = {
/**
* Custom function to render the message received from the AI.
*/
responseRenderer?: ResponseRenderer<AiMsg>;
/**
* Custom function to render the message sent by the user.
*/
promptRenderer?: PromptRenderer;
/**
* Indicates whether the user should be able to edit the message after sending it.
* Editing a message will replace the original message and will remove all subsequent messages in the conversation.
*
* @default false
*/
editableUserMessages?: boolean;
}
Not much to provide here in terms of steps. Configuring these to be set to something will result in no changes in behaviour.
The text was updated successfully, but these errors were encountered:
Although specified in typing, these options will result in no behaviour nor visual changes:
Not much to provide here in terms of steps. Configuring these to be set to something will result in no changes in behaviour.
The text was updated successfully, but these errors were encountered: