import streamlit as st from model import Web_qa import time def main(): # Set up the layout -------------------------------------------------------------- st.sidebar.title("Guideline") st.sidebar.markdown(""" 1. Type your message in the chat box on the right. 2. Hit Enter or click the send button to send your message. 3. Chat bot responses will appear below. 4. Source documents will be displayed in the sidebar. """) # Button to connect to Google link ------------------------------------------------ st.sidebar.markdown('Sources', unsafe_allow_html=True) st.title("ATrad Chat App") # Chat area ----------------------------------------------------------------------- user_input = st.text_input("", key="user_input") # JavaScript code to submit the form on Enter key press js_submit = f""" document.addEventListener("keydown", function(event) {{ if (event.code === "Enter" && !event.shiftKey) {{ document.querySelector(".stTextInput").dispatchEvent(new Event("submit")); }} }}); """ st.markdown(f'', unsafe_allow_html=True) if st.button("Send"): if user_input: st.markdown(f'
Question - {user_input}
', unsafe_allow_html=True) # Add bot response here (you can replace this with your bot logic) response, metadata, source_documents = generate_bot_response(user_input) st.markdown(f'
{response}
', unsafe_allow_html=True) # Source documents print("metadata", metadata) st.sidebar.title("Source Documents") for i, doc in enumerate(source_documents, 1): tit=metadata[i-1]["source"].split("\\")[-1] with st.sidebar.expander(f"{tit}"): st.write(doc) # Assuming the Document object can be directly written to display its content def generate_bot_response(user_input): # Simple bot logic (replace with your actual bot logic) start_time = time.time() print(f"User Input: {user_input}") res = Web_qa(user_input) response = res['result'] metadata = [i.metadata for i in res.get("source_documents", [])] end_time = time.time() response_time = end_time - start_time print(f"Response Time: {response_time} seconds") return response, metadata, res.get('source_documents', []) if __name__ == "__main__": main()