pvanand commited on
Commit
be7e7f2
·
verified ·
1 Parent(s): 75b1d67

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -1
main.py CHANGED
@@ -35,7 +35,8 @@ class CrawlerOutput(BaseModel):
35
 
36
  async def simple_crawl(url: str):
37
  async with AsyncWebCrawler(verbose=True) as crawler:
38
- result = await crawler.arun(url=url)
 
39
  print(len(result.markdown))
40
  return result
41
 
 
35
 
36
  async def simple_crawl(url: str):
37
  async with AsyncWebCrawler(verbose=True) as crawler:
38
+ result = await crawler.arun(url=url,
39
+ bypass_cache=True)
40
  print(len(result.markdown))
41
  return result
42