From a1da7981a77f4b852f1087a42d07c044ae9595fb Mon Sep 17 00:00:00 2001 From: Tari <65512380+Tari-dev@users.noreply.github.com> Date: Fri, 13 Jun 2025 17:48:06 +0530 Subject: [PATCH] chore: fix typo --- starter_ai_agents/web_scrapping_ai_agent/local_ai_scrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/starter_ai_agents/web_scrapping_ai_agent/local_ai_scrapper.py b/starter_ai_agents/web_scrapping_ai_agent/local_ai_scrapper.py index 802ab7e..7e6742d 100644 --- a/starter_ai_agents/web_scrapping_ai_agent/local_ai_scrapper.py +++ b/starter_ai_agents/web_scrapping_ai_agent/local_ai_scrapper.py @@ -23,7 +23,7 @@ graph_config = { # Get the URL of the website to scrape url = st.text_input("Enter the URL of the website you want to scrape") # 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 smart_scraper_graph = SmartScraperGraph( @@ -34,4 +34,4 @@ smart_scraper_graph = SmartScraperGraph( # Scrape the website if st.button("Scrape"): result = smart_scraper_graph.run() - st.write(result) \ No newline at end of file + st.write(result)