mery22 commited on
Commit
e241d15
·
verified ·
1 Parent(s): 8369489

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +40 -35
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import os
 
2
  import streamlit as st
3
  from datetime import datetime
4
- import psycopg2
5
  from langchain_community.vectorstores import FAISS
6
  from langchain_community.embeddings import HuggingFaceEmbeddings
7
  from langchain_huggingface import HuggingFaceEndpoint
@@ -85,9 +85,9 @@ def insert_feedback(conn, rating, comment):
85
  cur.execute('INSERT INTO feedback (timestamp, rating, comment) VALUES (%s, %s, %s)',
86
  (timestamp, int(rating), comment))
87
  conn.commit()
88
- st.write("Feedback inserted successfully.")
89
  except Exception as e:
90
- st.write(f"Error inserting feedback: {e}")
91
 
92
  # Streamlit interface with improved aesthetics
93
  st.set_page_config(page_title="Alter-IA Chat", page_icon="🤖")
@@ -146,7 +146,6 @@ st.markdown('<p class="centered-orange-text">"Votre Réponse à Chaque Défi Mé
146
  user_input = st.text_input("You:", "")
147
  submit_button = st.button("Ask 📨")
148
 
149
-
150
  if submit_button:
151
  if user_input.strip() != "":
152
  bot_response = chatbot_response(user_input)
@@ -156,37 +155,43 @@ if submit_button:
156
  # Add rating and comment section
157
  st.markdown("---")
158
  st.markdown("#### Rate the Response:")
159
-
160
- # Custom star rating HTML
161
- rating_html = """
162
- <div class="star-rating">
163
- <input type="radio" id="5-stars" name="rating" value="5"><label for="5-stars">★</label>
164
- <input type="radio" id="4-stars" name="rating" value="4"><label for="4-stars">★</label>
165
- <input type="radio" id="3-stars" name="rating" value="3"><label for="3-stars">★</label>
166
- <input type="radio" id="2-stars" name="rating" value="2"><label for="2-stars">★</label>
167
- <input type="radio" id="1-star" name="rating" value="1"><label for="1-star">★</label>
168
- </div>
169
- """
170
- st.markdown(rating_html, unsafe_allow_html=True)
171
-
172
- # Use a hidden input to capture the selected rating
173
- rating = st.text_input("Selected Rating:", value="3", key="rating_input", label_visibility="hidden")
174
-
175
- comment = st.text_area("Your Comment:")
176
-
177
- # Submit feedback
178
- feedback_button = st.button("Submit Feedback")
179
-
180
- if feedback_button:
181
- if comment.strip() == "":
182
- st.warning("⚠ Please provide a comment.")
183
- else:
184
- st.success("Thank you for your feedback!")
185
-
186
- # Store feedback in PostgreSQL
187
- conn = create_connection()
188
- insert_feedback(conn, rating, comment)
189
- conn.close()
 
 
 
 
 
 
190
 
191
  else:
192
  st.warning("⚠ Please enter a message.")
 
1
  import os
2
+ import psycopg2
3
  import streamlit as st
4
  from datetime import datetime
 
5
  from langchain_community.vectorstores import FAISS
6
  from langchain_community.embeddings import HuggingFaceEmbeddings
7
  from langchain_huggingface import HuggingFaceEndpoint
 
85
  cur.execute('INSERT INTO feedback (timestamp, rating, comment) VALUES (%s, %s, %s)',
86
  (timestamp, int(rating), comment))
87
  conn.commit()
88
+ st.success("Feedback inserted successfully.")
89
  except Exception as e:
90
+ st.error(f"Error inserting feedback: {e}")
91
 
92
  # Streamlit interface with improved aesthetics
93
  st.set_page_config(page_title="Alter-IA Chat", page_icon="🤖")
 
146
  user_input = st.text_input("You:", "")
147
  submit_button = st.button("Ask 📨")
148
 
 
149
  if submit_button:
150
  if user_input.strip() != "":
151
  bot_response = chatbot_response(user_input)
 
155
  # Add rating and comment section
156
  st.markdown("---")
157
  st.markdown("#### Rate the Response:")
158
+
159
+ # Use Streamlit form for feedback
160
+ with st.form(key='feedback_form'):
161
+ # Custom star rating HTML
162
+ rating_html = """
163
+ <div class="star-rating">
164
+ <input type="radio" id="5-stars" name="rating" value="5"><label for="5-stars">★</label>
165
+ <input type="radio" id="4-stars" name="rating" value="4"><label for="4-stars">★</label>
166
+ <input type="radio" id="3-stars" name="rating" value="3" checked><label for="3-stars">★</label>
167
+ <input type="radio" id="2-stars" name="rating" value="2"><label for="2-stars">★</label>
168
+ <input type="radio" id="1-star" name="rating" value="1"><label for="1-star">★</label>
169
+ </div>
170
+ <input type="hidden" id="selected-rating" name="rating" value="3">
171
+ <script>
172
+ const ratingLabels = document.querySelectorAll('.star-rating label');
173
+ ratingLabels.forEach(label => {
174
+ label.addEventListener('click', () => {
175
+ document.getElementById('selected-rating').value = label.previousElementSibling.value;
176
+ });
177
+ });
178
+ </script>
179
+ """
180
+ st.markdown(rating_html, unsafe_allow_html=True)
181
+
182
+ rating = st.text_input("Selected Rating:", value="3", key="rating_input", label_visibility="hidden")
183
+ comment = st.text_area("Your Comment:")
184
+
185
+ submit_feedback_button = st.form_submit_button("Submit Feedback")
186
+
187
+ if submit_feedback_button:
188
+ if comment.strip() == "":
189
+ st.warning("⚠ Please provide a comment.")
190
+ else:
191
+ # Store feedback in PostgreSQL
192
+ conn = create_connection()
193
+ insert_feedback(conn, rating, comment)
194
+ conn.close()
195
 
196
  else:
197
  st.warning("⚠ Please enter a message.")