maxidl commited on
Commit
a23b73c
1 Parent(s): 2fa3ca7
Files changed (1) hide show
  1. app.py +5 -0
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"