vsrinivas commited on
Commit
2b0849c
·
verified ·
1 Parent(s): c60d2f8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -97,7 +97,7 @@ def classify_page(statement):
97
  Input: {statement}
98
  """
99
  response = chat_session.send_message(prompt)
100
- # print(response.text.replace("```python\n", "").replace("```", "").strip())
101
  return ast.literal_eval(response.text.replace("```python\n", "").replace("```", "").strip())
102
 
103
  def create_notebook(file, tc, bc):
@@ -140,7 +140,7 @@ def create_notebook(file, tc, bc):
140
 
141
  with gr.Blocks() as app:
142
  gr.Markdown("""# PDF to IPython Notebook Convertor App
143
- ## Upload your PDF document containing Python code and text and press Process File button to download the iPython Notebook.
144
  ### Adjust Top Crop and Bottom Crop values based on how much of top and bottom design content of your PDF document you want to eliminate.""")
145
 
146
  file_input = gr.File(label="Upload a PDF file")
 
97
  Input: {statement}
98
  """
99
  response = chat_session.send_message(prompt)
100
+ print(response.text.replace("```python\n", "").replace("```", "").strip())
101
  return ast.literal_eval(response.text.replace("```python\n", "").replace("```", "").strip())
102
 
103
  def create_notebook(file, tc, bc):
 
140
 
141
  with gr.Blocks() as app:
142
  gr.Markdown("""# PDF to IPython Notebook Convertor App
143
+ ## Upload your PDF document containing Python code and Text and press 'Process File' button to download the iPython Notebook.
144
  ### Adjust Top Crop and Bottom Crop values based on how much of top and bottom design content of your PDF document you want to eliminate.""")
145
 
146
  file_input = gr.File(label="Upload a PDF file")