--- title: Streamlit Chatbot emoji: 🔥 colorFrom: indigo colorTo: yellow sdk: docker pinned: false license: mit short_description: 'A chatbot for Minutes of Meeting ' --- NOTE: Currently, the application supports only JSON files. If you want to modify it for other file types, update the following line in the code: uploaded_file = st.file_uploader("Upload a JSON file for processing", type=["json"]) For example, to support CSV files: uploaded_file = st.file_uploader("Upload a file for processing", type=["csv"]) To support multiple file types (e.g., JSON, CSV, TXT), you can modify the code as follows: uploaded_file = st.file_uploader("Upload a file for processing", type=["json", "csv", "txt"])