Spaces:
Build error
Build error
app.py
CHANGED
|
@@ -3,6 +3,11 @@ import gradio as gr
|
|
| 3 |
title = "# Paper Review Generator"
|
| 4 |
steps = """1. Converts uploaded pdf file to markdown. You can edit the intermediate markdown output.\n2. Generates a review for the paper"""
|
| 5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
def generate(paper_text):
|
| 8 |
return "Success"
|
|
|
|
| 3 |
title = "# Paper Review Generator"
|
| 4 |
steps = """1. Converts uploaded pdf file to markdown. You can edit the intermediate markdown output.\n2. Generates a review for the paper"""
|
| 5 |
|
| 6 |
+
def process_file(file):
|
| 7 |
+
|
| 8 |
+
return "Processed file"
|
| 9 |
+
|
| 10 |
+
|
| 11 |
|
| 12 |
def generate(paper_text):
|
| 13 |
return "Success"
|