Update app.py
Browse files
app.py
CHANGED
@@ -93,8 +93,8 @@ iface = gr.Interface(
|
|
93 |
inputs=gr.Textbox(lines=1, placeholder="Enter URL of the web page"),
|
94 |
outputs=gr.Markdown(label="Web Page Content"),
|
95 |
title="Web Page Processor for Hugging Face Chat Tools",
|
96 |
-
description="Enter the URL of a web page. The tool will extract and display the structured content of the page, including text, links, and images. This tool is designed for use with Hugging Face Chat Tools."
|
97 |
-
share=False # Set share to False to remove the "Share via link" button
|
98 |
)
|
99 |
|
|
|
100 |
iface.launch()
|
|
|
93 |
inputs=gr.Textbox(lines=1, placeholder="Enter URL of the web page"),
|
94 |
outputs=gr.Markdown(label="Web Page Content"),
|
95 |
title="Web Page Processor for Hugging Face Chat Tools",
|
96 |
+
description="Enter the URL of a web page. The tool will extract and display the structured content of the page, including text, links, and images. This tool is designed for use with Hugging Face Chat Tools."
|
|
|
97 |
)
|
98 |
|
99 |
+
# Launch the interface without sharing
|
100 |
iface.launch()
|