lovodkin93 commited on
Commit
368b8d5
·
verified ·
1 Parent(s): 78b7911

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -4,12 +4,13 @@ import os
4
  # Function to show HTML content using an iframe
5
  def show_html_in_iframe(page_idx):
6
  # Construct the URL using the selected index
7
- url = f'https://wmtis.s3.eu-west-1.amazonaws.com/test/{html_files[page_idx]}'
 
8
  iframe_html = f'<iframe src="{url}" width="100%" height="1000"></iframe>'
9
  return iframe_html
10
 
11
  # Path to the directory containing HTML files
12
- html_files_path = os.path.join("html_files", "test")
13
  html_files = [f for f in os.listdir(html_files_path) if f.endswith('.html')]
14
 
15
  with gr.Blocks() as demo:
 
4
  # Function to show HTML content using an iframe
5
  def show_html_in_iframe(page_idx):
6
  # Construct the URL using the selected index
7
+ # url = f'https://wmtis.s3.eu-west-1.amazonaws.com/test/{html_files[page_idx]}'
8
+ url = f'https://github.com/fusereviews/multi-review-fusion-in-context/tree/main/dataset_htmls/dev/{html_files[page_idx]}'
9
  iframe_html = f'<iframe src="{url}" width="100%" height="1000"></iframe>'
10
  return iframe_html
11
 
12
  # Path to the directory containing HTML files
13
+ html_files_path = os.path.join("html_files", "dev")
14
  html_files = [f for f in os.listdir(html_files_path) if f.endswith('.html')]
15
 
16
  with gr.Blocks() as demo: