Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -97,7 +97,7 @@ def classify_page(statement):
|
|
97 |
Input: {statement}
|
98 |
"""
|
99 |
response = chat_session.send_message(prompt)
|
100 |
-
|
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
|
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")
|