how can I add copy icon, thumbsup & thumb down icons in streamlit chat_message component - just like Chat-GPT chat window?
Regards,
Ninad
how can I add copy icon, thumbsup & thumb down icons in streamlit chat_message component - just like Chat-GPT chat window?
Regards,
Ninad
Hey @Ninad_Jagtap,
If you display the message using st.code
(rather than st.write
), that will display a copy icon β I realize thatβs not the most ideal solution (the font will be slightly different from regular text), but itβs probably the easiest way to implement this.
For thumbs up and thumbs down icons, Trubrics built an awesome component that you can use for this β check out their examples here.
Thanks Caroline - both the suggestions worked.
Appreciate quick response. Also thanks to @jeffkayne for the awesome component.
Just to complete the drawback of using st.code instead or st.write in chat_message is that the long string are not wrapped.
Also the text that resembles code will be highlighted, to add to OP question.