@@ -1803,6 +1803,7 @@ def web_scrape_md(
18031803 url : str ,
18041804 include_images : bool | Omit = omit ,
18051805 include_links : bool | Omit = omit ,
1806+ shorten_base64_images : bool | Omit = omit ,
18061807 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
18071808 # The extra values given here take precedence over values defined on the client or passed to this method.
18081809 extra_headers : Headers | None = None ,
@@ -1823,6 +1824,8 @@ def web_scrape_md(
18231824
18241825 include_links: Preserve hyperlinks in Markdown output
18251826
1827+ shorten_base64_images: Shorten base64-encoded image data in the Markdown output
1828+
18261829 extra_headers: Send extra headers
18271830
18281831 extra_query: Add additional query parameters to the request
@@ -1843,6 +1846,7 @@ def web_scrape_md(
18431846 "url" : url ,
18441847 "include_images" : include_images ,
18451848 "include_links" : include_links ,
1849+ "shorten_base64_images" : shorten_base64_images ,
18461850 },
18471851 brand_web_scrape_md_params .BrandWebScrapeMdParams ,
18481852 ),
@@ -3632,6 +3636,7 @@ async def web_scrape_md(
36323636 url : str ,
36333637 include_images : bool | Omit = omit ,
36343638 include_links : bool | Omit = omit ,
3639+ shorten_base64_images : bool | Omit = omit ,
36353640 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
36363641 # The extra values given here take precedence over values defined on the client or passed to this method.
36373642 extra_headers : Headers | None = None ,
@@ -3652,6 +3657,8 @@ async def web_scrape_md(
36523657
36533658 include_links: Preserve hyperlinks in Markdown output
36543659
3660+ shorten_base64_images: Shorten base64-encoded image data in the Markdown output
3661+
36553662 extra_headers: Send extra headers
36563663
36573664 extra_query: Add additional query parameters to the request
@@ -3672,6 +3679,7 @@ async def web_scrape_md(
36723679 "url" : url ,
36733680 "include_images" : include_images ,
36743681 "include_links" : include_links ,
3682+ "shorten_base64_images" : shorten_base64_images ,
36753683 },
36763684 brand_web_scrape_md_params .BrandWebScrapeMdParams ,
36773685 ),
0 commit comments