Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -77,12 +77,19 @@ interface = gr.Interface(
|
|
77 |
|
78 |
examples=example_files, # Add the example files
|
79 |
|
80 |
-
outputs=gr.File(label="Download Processed Excel File"), # File download output
|
81 |
-
|
|
|
|
|
|
|
82 |
# description="Upload an Excel file to process and download the result.",
|
83 |
-
description="Upload an Excel file to process and download the result or use the example files (click on anyone of them)."
|
|
|
|
|
|
|
84 |
)
|
85 |
|
|
|
86 |
# Launch the interface
|
87 |
if __name__ == "__main__":
|
88 |
interface.launch()
|
|
|
77 |
|
78 |
examples=example_files, # Add the example files
|
79 |
|
80 |
+
# outputs=gr.File(label="Download Processed Excel File"), # File download output
|
81 |
+
outputs=gr.File(label="<p style='font-weight: bold; font-size: 16px;'> Download Processed Excel File containing the Project Proposals for each Location~Problem paired combination </p>"), # File download output
|
82 |
+
|
83 |
+
|
84 |
+
# title="Excel File Uploader",
|
85 |
# description="Upload an Excel file to process and download the result.",
|
86 |
+
# description="Upload an Excel file to process and download the result or use the example files (click on anyone of them)."
|
87 |
+
|
88 |
+
title="<h1 style='font-weight: bold;'>Excel File Uploader</h1>", # Solid title
|
89 |
+
description="<p style='font-weight: bold; font-size: 16px;'>Upload an Excel file to process and download the result or use the example files.</p>", # Solid description
|
90 |
)
|
91 |
|
92 |
+
|
93 |
# Launch the interface
|
94 |
if __name__ == "__main__":
|
95 |
interface.launch()
|