Spaces:
Running
Running
Paul Magee
commited on
Commit
·
ee654b3
1
Parent(s):
ad3ba0d
v 0.4
Browse files- Future_Improvements.md +3 -1
- Public_Chat.py +1 -1
Future_Improvements.md
CHANGED
@@ -154,8 +154,10 @@ This improvement would significantly enhance the chatbot's usability by making i
|
|
154 |
- Ensured proper error handling and success tracking
|
155 |
|
156 |
3. **Next Steps**
|
157 |
-
-
|
|
|
158 |
- Add indexing capability for feedback analytics
|
|
|
159 |
|
160 |
## Phase 3: Feedback Analysis Tools
|
161 |
|
|
|
154 |
- Ensured proper error handling and success tracking
|
155 |
|
156 |
3. **Next Steps**
|
157 |
+
- Implement Supabase integration for persistent feedback storage on Streamlit Cloud
|
158 |
+
- Consider other database options: MongoDB Atlas (free tier) for JSON-like storage
|
159 |
- Add indexing capability for feedback analytics
|
160 |
+
- Create migration utility to move file-based feedback to database
|
161 |
|
162 |
## Phase 3: Feedback Analysis Tools
|
163 |
|
Public_Chat.py
CHANGED
@@ -231,7 +231,7 @@ if "chatbot" not in st.session_state:
|
|
231 |
logger.info("Chatbot initialized successfully")
|
232 |
|
233 |
# Title and description
|
234 |
-
st.title("
|
235 |
st.markdown("""
|
236 |
This chatbot can answer questions about your documents.
|
237 |
Ask any question about the content in your documents! This demo is focused on a psychology book. Ask it questions about how the human brain works, how to stick with a habit, or how we are easily fooled.
|
|
|
231 |
logger.info("Chatbot initialized successfully")
|
232 |
|
233 |
# Title and description
|
234 |
+
st.title("Paul's Chatbot v0.4")
|
235 |
st.markdown("""
|
236 |
This chatbot can answer questions about your documents.
|
237 |
Ask any question about the content in your documents! This demo is focused on a psychology book. Ask it questions about how the human brain works, how to stick with a habit, or how we are easily fooled.
|