Build chat-based apps채팅 관련 기능에 대한 설명입니다. 각 위젯의 역할, 특징, 적용 가능한 수식 형식입니다.# Insert a chat message container.with st.chat_message("user"): st.write("Hello 👋") st.line_chart(np.random.randn(30, 3))# Display a chat input widget at the bottom of the app.>>> st.chat_input("Say something")# Display a chat input widget inline.with st.container(): st.chat_input("Say something")st.chat_message(se..