Update app to include Notes section
Browse files- README.md +6 -0
- src/streamlit_app.py +8 -0
README.md
CHANGED
|
@@ -120,3 +120,9 @@ Notes:
|
|
| 120 |
|
| 121 |
3. Open your browser to the local URL provided by Streamlit (usually `http://localhost:8501`).
|
| 122 |
4. Use the sidebar to upload a `.csv`, `.mp3`, or `.wav` file and watch the agents analyze your data!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
|
| 121 |
3. Open your browser to the local URL provided by Streamlit (usually `http://localhost:8501`).
|
| 122 |
4. Use the sidebar to upload a `.csv`, `.mp3`, or `.wav` file and watch the agents analyze your data!
|
| 123 |
+
|
| 124 |
+
## Processed Files
|
| 125 |
+
|
| 126 |
+
**Note:** The following sample data can be used for analysis:
|
| 127 |
+
- [Customer Call Center Dataset Analysis](https://www.kaggle.com/datasets/rafaqatkhan608/customer-call-center-dataset-analysis/code/data)
|
| 128 |
+
- [E-commerce Customer Support English Audio](https://huggingface.co/datasets/HumynLabs/e-commerce-customersupport-english-audio/tree/main)
|
src/streamlit_app.py
CHANGED
|
@@ -218,6 +218,14 @@ def main():
|
|
| 218 |
else:
|
| 219 |
st.sidebar.info("No files processed yet.")
|
| 220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 221 |
# Prioritize based on view_mode
|
| 222 |
if st.session_state.view_mode == "upload" and uploaded_file is not None:
|
| 223 |
st.success(f"File '{uploaded_file.name}' uploaded successfully!")
|
|
|
|
| 218 |
else:
|
| 219 |
st.sidebar.info("No files processed yet.")
|
| 220 |
|
| 221 |
+
st.sidebar.markdown("---")
|
| 222 |
+
st.sidebar.header("Notes")
|
| 223 |
+
st.sidebar.markdown("""
|
| 224 |
+
Sample data:
|
| 225 |
+
- [Customer Call Center Dataset Analysis](https://www.kaggle.com/datasets/rafaqatkhan608/customer-call-center-dataset-analysis/code/data)
|
| 226 |
+
- [E-commerce Customer Support English Audio](https://huggingface.co/datasets/HumynLabs/e-commerce-customersupport-english-audio/tree/main)
|
| 227 |
+
""")
|
| 228 |
+
|
| 229 |
# Prioritize based on view_mode
|
| 230 |
if st.session_state.view_mode == "upload" and uploaded_file is not None:
|
| 231 |
st.success(f"File '{uploaded_file.name}' uploaded successfully!")
|