Spaces:
Build error
Build error
app.py
CHANGED
|
@@ -204,8 +204,8 @@ title = "# Placeholder Title"
|
|
| 204 |
steps = """Placeholder Description"""
|
| 205 |
# steps = """1. Converts uploaded pdf file to markdown. You can edit the intermediate markdown output.\n2. Generates a review for the paper"""
|
| 206 |
|
| 207 |
-
with gr.Blocks(theme=gr.themes.Soft(
|
| 208 |
-
title = gr.Markdown(title,
|
| 209 |
steps = gr.Markdown(steps)
|
| 210 |
instr = gr.Markdown("## Upload your paper in pdf format")
|
| 211 |
file_input = gr.File(file_types=[".pdf"], file_count="single")
|
|
|
|
| 204 |
steps = """Placeholder Description"""
|
| 205 |
# steps = """1. Converts uploaded pdf file to markdown. You can edit the intermediate markdown output.\n2. Generates a review for the paper"""
|
| 206 |
|
| 207 |
+
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
| 208 |
+
title = gr.Markdown(title,)
|
| 209 |
steps = gr.Markdown(steps)
|
| 210 |
instr = gr.Markdown("## Upload your paper in pdf format")
|
| 211 |
file_input = gr.File(file_types=[".pdf"], file_count="single")
|