Spaces:
Running
Running
NaikPriyank
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -9,4 +9,12 @@ license: mit
|
|
9 |
short_description: 'A chatbot for Minutes of Meeting '
|
10 |
---
|
11 |
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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"])
|