This function validates the chat history, ensuring that it is a dataframe that matches the expected format. If a single message is provided as a character string, it will be turned into a valid chat history dataframe.
Arguments
- chat_history
A dataframe with 'role' and 'content' columns, where 'role' is the role of the message ('user' or 'assistant') and 'content' is the content of the message.
- last_message_from_user
A logical indicating whether the last message should be from the user. Default is FALSE.
Alternatively, you can provide a single message as a character string.