SantanuBanerjee commited on
Commit
0b34e59
·
verified ·
1 Parent(s): 1398651

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -3
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
- title="Excel File Uploader",
 
 
 
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()