How to make ChatInterface scroll down when new messages are added?

Hi, When updating the ChatInterface with new messages, is it possible to make the interface scroll down so that you can see the most recent messages as they are updated?

Thank you for all the great work on Panel!

1 Like

I think auto_scroll_limit should work

import panel as pn

pn.chat.ChatInterface(auto_scroll_limit=10000000000, sizing_mode="stretch_both").show()