SantanuBanerjee commited on
Commit
20b4bb2
·
verified ·
1 Parent(s): 99fe899

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -78,15 +78,16 @@ interface = gr.Interface(
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="Download Processed Excel File \b{containing} the \t ** Project Proposals ** for each Location~Problem paired combination"), # File download output
82
 
83
 
84
  title="Excel File Uploader",
85
  description=(
86
- "<p style='font-weight: bold; font-size: 16px;'>Upload an Excel file to process and download the result "
87
  "or use the example files. The processed file will contain the project proposals for each "
88
- "location-problem paired combination.</p>"
89
- ), # Solid description
 
90
  )
91
 
92
 
 
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="Download Processed Excel File containing the ** Project Proposals ** for each Location~Problem paired combination"), # File download output
82
 
83
 
84
  title="Excel File Uploader",
85
  description=(
86
+ "<p style='font-weight: bold; font-size: 17px;'>Upload an Excel file to process and download the result "
87
  "or use the example files. The processed file will contain the project proposals for each "
88
+ "location-problem paired combination. For more information, visit "
89
+ "<a href='https://github.com/SanTanBan/TaxDirection' target='_blank'>this link</a>.</p>"
90
+ ) # Solid description with hyperlink
91
  )
92
 
93