Spaces:
Sleeping
Sleeping
| import streamlit as st | |
| from main import prints | |
| st.title("Health Suggestion Bot - Prakriti π") | |
| st.write("Prakriti, in Ayurveda, refers to an individual's unique physical and psychological constitution. It is determined by the balance of three fundamental energies or doshas: Vata, Pitta, and Kapha. Understanding one's Prakriti helps tailor health and lifestyle choices for overall well-being.") | |
| if "messages" not in st.session_state: | |
| st.session_state.messages = [] | |
| st.session_state.messages.append({ | |
| 'role':'assistant', | |
| 'content':"Hi! I'm your virtual assistant you can ask any query to me" | |
| }) | |
| for message in st.session_state.messages: | |
| with st.chat_message(message["role"]): | |
| st.markdown(message["content"]) | |
| prompt = st.chat_input("What is up?") | |
| if prompt: | |
| with st.chat_message("user"): | |
| st.markdown(prompt) | |
| st.session_state.messages.append({"role":"user","content":prompt}) | |
| response = f"ChatBot: {prints(prompt)}" | |
| with st.chat_message("assistant"): | |
| st.markdown(response) | |
| st.session_state.messages.append({"role":"assistant","content":response}) |