Update app.py
Browse files
app.py
CHANGED
@@ -140,8 +140,13 @@ def upload_pdf(file):
|
|
140 |
|
141 |
|
142 |
|
143 |
-
|
144 |
-
|
|
|
|
|
|
|
|
|
|
|
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 |
'''
|