@@ -2477,11 +2477,10 @@ def web_scrape_md(
24772477 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
24782478 ) -> BrandWebScrapeMdResponse :
24792479 """
2480- Scrapes the given URL, converts the HTML content to Markdown, and returns the
2481- result.
2480+ Scrapes the given URL into LLM usable Markdown.
24822481
24832482 Args:
2484- url: Full URL to scrape and convert to markdown (must include http:// or https://
2483+ url: Full URL to scrape into LLM usable Markdown (must include http:// or https://
24852484 protocol)
24862485
24872486 include_images: Include image references in Markdown output
@@ -2490,7 +2489,7 @@ def web_scrape_md(
24902489
24912490 max_age_ms: Return a cached result if a prior scrape for the same parameters exists and is
24922491 younger than this many milliseconds. Defaults to 1 day (86400000 ms) when
2493- omitted. Set to 0 to always scrape fresh.
2492+ omitted. Max is 30 days (2592000000 ms). Set to 0 to always scrape fresh.
24942493
24952494 shorten_base64_images: Shorten base64-encoded image data in the Markdown output
24962495
@@ -4993,11 +4992,10 @@ async def web_scrape_md(
49934992 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
49944993 ) -> BrandWebScrapeMdResponse :
49954994 """
4996- Scrapes the given URL, converts the HTML content to Markdown, and returns the
4997- result.
4995+ Scrapes the given URL into LLM usable Markdown.
49984996
49994997 Args:
5000- url: Full URL to scrape and convert to markdown (must include http:// or https://
4998+ url: Full URL to scrape into LLM usable Markdown (must include http:// or https://
50014999 protocol)
50025000
50035001 include_images: Include image references in Markdown output
@@ -5006,7 +5004,7 @@ async def web_scrape_md(
50065004
50075005 max_age_ms: Return a cached result if a prior scrape for the same parameters exists and is
50085006 younger than this many milliseconds. Defaults to 1 day (86400000 ms) when
5009- omitted. Set to 0 to always scrape fresh.
5007+ omitted. Max is 30 days (2592000000 ms). Set to 0 to always scrape fresh.
50105008
50115009 shorten_base64_images: Shorten base64-encoded image data in the Markdown output
50125010
0 commit comments