Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -42,7 +42,7 @@ else:
|
|
42 |
html_content = None
|
43 |
# check if html_content is an url, and show error if it is
|
44 |
@traceable(run_type="tool")
|
45 |
-
def html_content_input:
|
46 |
html_content = st.text_input("Paste the HTML tags of the item you want to extract:", max_chars=10000, help="example: <li>Product 1 </li>, watch the video above")
|
47 |
if html_content:
|
48 |
if html_content.startswith("http"):
|
|
|
42 |
html_content = None
|
43 |
# check if html_content is an url, and show error if it is
|
44 |
@traceable(run_type="tool")
|
45 |
+
def html_content_input():
|
46 |
html_content = st.text_input("Paste the HTML tags of the item you want to extract:", max_chars=10000, help="example: <li>Product 1 </li>, watch the video above")
|
47 |
if html_content:
|
48 |
if html_content.startswith("http"):
|