NaikPriyank commited on
Commit
ed75c95
·
verified ·
1 Parent(s): a1124ec

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -9,4 +9,12 @@ license: mit
9
  short_description: 'A chatbot for Minutes of Meeting '
10
  ---
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
9
  short_description: 'A chatbot for Minutes of Meeting '
10
  ---
11
 
12
+ NOTE:
13
+ Currently, the application supports only JSON files. If you want to modify it for other file types, update the following line in the code:
14
+ uploaded_file = st.file_uploader("Upload a JSON file for processing", type=["json"])
15
+
16
+ For example, to support CSV files:
17
+ uploaded_file = st.file_uploader("Upload a file for processing", type=["csv"])
18
+
19
+ To support multiple file types (e.g., JSON, CSV, TXT), you can modify the code as follows:
20
+ uploaded_file = st.file_uploader("Upload a file for processing", type=["json", "csv", "txt"])