Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import os
|
|
2 |
import gradio as gr
|
3 |
|
4 |
# Path to the directory containing HTML files
|
5 |
-
html_files_path = "html_files"
|
6 |
html_files = [f for f in os.listdir(html_files_path) if f.endswith('.html')]
|
7 |
|
8 |
def show_html(file_name):
|
|
|
2 |
import gradio as gr
|
3 |
|
4 |
# Path to the directory containing HTML files
|
5 |
+
html_files_path = os.path.join("html_files", "test")
|
6 |
html_files = [f for f in os.listdir(html_files_path) if f.endswith('.html')]
|
7 |
|
8 |
def show_html(file_name):
|