dammy commited on
Commit
dc31211
·
1 Parent(s): a01ca04

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -140,8 +140,13 @@ def upload_pdf(file):
140
 
141
 
142
 
143
-
144
- with gr.Blocks() as demo:
 
 
 
 
 
145
  '''
146
  Frontend for our tool
147
  '''
 
140
 
141
 
142
 
143
+ with gr.Interface(
144
+ fn=None, # Set your function here
145
+ title="Your App Title", # Add your title here
146
+ description="Frontend for our tool", # Add your description here
147
+ live=True,) as demo:
148
+
149
+ # with gr.Blocks() as demo:
150
  '''
151
  Frontend for our tool
152
  '''