Update app.py
Browse files
app.py
CHANGED
@@ -105,6 +105,10 @@ def interact_with_together_api(messages, model_link):
|
|
105 |
st.error(f"Error communicating with the API: {e}")
|
106 |
return None
|
107 |
|
|
|
|
|
|
|
|
|
108 |
# Create sidebar with model selection dropdown and reset button
|
109 |
selected_model = st.sidebar.selectbox("Select Model", list(model_links.keys()))
|
110 |
reset_button = st.sidebar.button('Reset Chat', on_click=reset_conversation)
|
@@ -121,3 +125,31 @@ st.sidebar.markdown("**Note**: This model is still in the beta phase. Responses
|
|
121 |
# Add logo and text to the sidebar
|
122 |
st.sidebar.image("https://assets.isu.pub/document-structure/221118065013-a6029cf3d563afaf9b946bb9497d45d4/v1/2841525b232adaef7bd0efe1da81a4c5.jpeg", width=200)
|
123 |
st.sidebar.write("A product proudly developed by Kisii University")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
st.error(f"Error communicating with the API: {e}")
|
106 |
return None
|
107 |
|
108 |
+
# Initialize chat history
|
109 |
+
if "messages" not in st.session_state:
|
110 |
+
st.session_state.messages = []
|
111 |
+
|
112 |
# Create sidebar with model selection dropdown and reset button
|
113 |
selected_model = st.sidebar.selectbox("Select Model", list(model_links.keys()))
|
114 |
reset_button = st.sidebar.button('Reset Chat', on_click=reset_conversation)
|
|
|
125 |
# Add logo and text to the sidebar
|
126 |
st.sidebar.image("https://assets.isu.pub/document-structure/221118065013-a6029cf3d563afaf9b946bb9497d45d4/v1/2841525b232adaef7bd0efe1da81a4c5.jpeg", width=200)
|
127 |
st.sidebar.write("A product proudly developed by Kisii University")
|
128 |
+
|
129 |
+
# Accept user input
|
130 |
+
if prompt := st.chat_input(f"Hi, I'm {selected_model}, let's chat"):
|
131 |
+
# Display user message in chat message container
|
132 |
+
with st.chat_message("user"):
|
133 |
+
st.markdown(prompt)
|
134 |
+
# Add user message to chat history
|
135 |
+
st.session_state.messages.append(("user", prompt))
|
136 |
+
|
137 |
+
# Interact with the selected model
|
138 |
+
assistant_response = interact_with_together_api(st.session_state.messages, model_links[selected_model])
|
139 |
+
|
140 |
+
if assistant_response is not None:
|
141 |
+
# Display assistant response in chat message container
|
142 |
+
with st.empty():
|
143 |
+
st.markdown("AI is typing...")
|
144 |
+
st.empty()
|
145 |
+
st.markdown(assistant_response)
|
146 |
+
|
147 |
+
# Check if intervention is needed based on bot response
|
148 |
+
if any(keyword in prompt.lower() for keyword in ["human", "therapist", "someone", "died", "death", "help", "suicide", "suffering", "crisis", "emergency", "support", "depressed", "anxiety", "lonely", "desperate", "struggling", "counseling", "distressed", "hurt", "pain", "grief", "trauma", "abuse", "danger", "risk", "urgent", "need assistance"]):
|
149 |
+
# Intervention logic here
|
150 |
+
if not st.session_state.ask_intervention:
|
151 |
+
if st.button("After the analysing our session you may need some extra help, so you can reach out to a certified therapist at +25493609747 Name: Ogega feel free to talk"):
|
152 |
+
st.write("You can reach out to a certified therapist at +25493609747.")
|
153 |
+
|
154 |
+
# Add assistant response to chat history
|
155 |
+
st.session_state.messages.append(("assistant", assistant_response))
|