diff --git a/README.md b/README.md index b191ea4e..b05c1705 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ crawler = WebCrawler(db_path='crawler_data.db') 3. Fetch a single page: ```python -single_url = UrlModel(url='https://kidocode.com', forced=True) +single_url = UrlModel(url='https://kidocode.com', forced=False) result = crawl4ai.fetch_page( single_url, provider= "openai/gpt-3.5-turbo", diff --git a/examples/quickstart.py b/examples/quickstart.py index 9a64023a..17ff8464 100644 --- a/examples/quickstart.py +++ b/examples/quickstart.py @@ -8,7 +8,7 @@ def main(): crawler = WebCrawler(db_path='crawler_data.db') # Fetch a single page - single_url = UrlModel(url='https://www.nbcnews.com/business', forced=True) + single_url = UrlModel(url='https://www.nbcnews.com/business', forced=False) result = crawler.fetch_page( single_url, provider= "openai/gpt-3.5-turbo",