NCTC_OSINT / components /chat_box.py
NCTCMumbai's picture
Upload 24 files
e5b3236 verified
raw
history blame
No virus
196 Bytes
import streamlit as st
def chat_box(session_state, config):
for message in session_state.messages:
with st.chat_message(message["role"]):
st.markdown(message["content"])