Spaces:
Running
Running
update
Browse files
app.py
CHANGED
@@ -225,7 +225,7 @@ async def process_url(url, max_depth, max_pages):
|
|
225 |
|
226 |
|
227 |
# Gradio interface
|
228 |
-
|
229 |
|
230 |
with gr.Blocks(theme=theme) as iface:
|
231 |
with gr.Row():
|
@@ -270,5 +270,7 @@ with gr.Blocks(theme=theme) as iface:
|
|
270 |
outputs=[output, status],
|
271 |
)
|
272 |
|
|
|
273 |
if __name__ == "__main__":
|
|
|
274 |
iface.launch()
|
|
|
225 |
|
226 |
|
227 |
# Gradio interface
|
228 |
+
theme = gr.themes.Soft(primary_hue="blue", font="Open Sans")
|
229 |
|
230 |
with gr.Blocks(theme=theme) as iface:
|
231 |
with gr.Row():
|
|
|
270 |
outputs=[output, status],
|
271 |
)
|
272 |
|
273 |
+
|
274 |
if __name__ == "__main__":
|
275 |
+
iface = create_gradio_interface()
|
276 |
iface.launch()
|