Sobit commited on
Commit
bb847f5
·
verified ·
1 Parent(s): 8c95cb1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -6
app.py CHANGED
@@ -1,4 +1,3 @@
1
-
2
  import os
3
  from pathlib import Path
4
  import litellm
@@ -147,7 +146,7 @@ def upload_file(filepath):
147
  print("HTML content:", clean_html_output)
148
 
149
  # Prepare an iframe to embed the HTML content
150
- iframe_html = f"<iframe srcdoc='{clean_html_output}' style='width:100%; height:600px; border:none;'></iframe>"
151
 
152
  # Debugging print to check the iframe HTML
153
  # print("Iframe HTML:", iframe_html)
@@ -177,7 +176,4 @@ with gr.Blocks() as demo:
177
  # Handle download button click
178
  d.click(download_file, None, [u, d])
179
 
180
- demo.launch(debug=True)
181
-
182
-
183
-
 
 
1
  import os
2
  from pathlib import Path
3
  import litellm
 
146
  print("HTML content:", clean_html_output)
147
 
148
  # Prepare an iframe to embed the HTML content
149
+ iframe_html = f"<iframe srcdoc='{clean_html_output}' style='width:100%; height:600px; border:none;overflow-y:scroll;'></iframe>"
150
 
151
  # Debugging print to check the iframe HTML
152
  # print("Iframe HTML:", iframe_html)
 
176
  # Handle download button click
177
  d.click(download_file, None, [u, d])
178
 
179
+ demo.launch()