Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
app.py
CHANGED
@@ -96,11 +96,10 @@ if recent_questions:
|
|
96 |
|
97 |
st.sidebar.title("Recent Questions")
|
98 |
for q in reversed(recent_questions["questions"]): # Show latest first
|
99 |
-
st.sidebar.write(f"🔹 {q[
|
100 |
else:
|
101 |
st.sidebar.write(f"No Recent questions")
|
102 |
|
103 |
-
|
104 |
# Separator
|
105 |
|
106 |
# Streamlit Sidebar for Recent Questions
|
|
|
96 |
|
97 |
st.sidebar.title("Recent Questions")
|
98 |
for q in reversed(recent_questions["questions"]): # Show latest first
|
99 |
+
st.sidebar.write(f"🔹 {q['question']}")
|
100 |
else:
|
101 |
st.sidebar.write(f"No Recent questions")
|
102 |
|
|
|
103 |
# Separator
|
104 |
|
105 |
# Streamlit Sidebar for Recent Questions
|