chore: fix typo
This commit is contained in:
parent
d37218bbcc
commit
a1da7981a7
1 changed files with 2 additions and 2 deletions
|
|
@ -23,7 +23,7 @@ graph_config = {
|
||||||
# Get the URL of the website to scrape
|
# Get the URL of the website to scrape
|
||||||
url = st.text_input("Enter the URL of the website you want to scrape")
|
url = st.text_input("Enter the URL of the website you want to scrape")
|
||||||
# Get the user prompt
|
# Get the user prompt
|
||||||
user_prompt = st.text_input("What you want the AI agent to scrae from the website?")
|
user_prompt = st.text_input("What you want the AI agent to scrape from the website?")
|
||||||
|
|
||||||
# Create a SmartScraperGraph object
|
# Create a SmartScraperGraph object
|
||||||
smart_scraper_graph = SmartScraperGraph(
|
smart_scraper_graph = SmartScraperGraph(
|
||||||
|
|
@ -34,4 +34,4 @@ smart_scraper_graph = SmartScraperGraph(
|
||||||
# Scrape the website
|
# Scrape the website
|
||||||
if st.button("Scrape"):
|
if st.button("Scrape"):
|
||||||
result = smart_scraper_graph.run()
|
result = smart_scraper_graph.run()
|
||||||
st.write(result)
|
st.write(result)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue