Configuration for extracting page content from search results. When provided, the API will fetch and extract the content from the specified number of result pages. NOTE: Use of this option incurs additional cost, billed at your account's rate for the Extract API. The resulting page markdown will update the value of the snippet field on the respective result item.
| Name | Type | Description | Notes |
|---|---|---|---|
| count | int | Number of search results to extract content from. Must be between 1 and 10. | [optional] |
| timeout | float | Timeout in seconds for extraction of each page. If omitted, uses the default timeout. | [optional] |
from openapi_client.models.search_request_extract import SearchRequestExtract
# TODO update the JSON string below
json = "{}"
# create an instance of SearchRequestExtract from a JSON string
search_request_extract_instance = SearchRequestExtract.from_json(json)
# print the JSON string representation of the object
print(SearchRequestExtract.to_json())
# convert the object into a dict
search_request_extract_dict = search_request_extract_instance.to_dict()
# create an instance of SearchRequestExtract from a dict
search_request_extract_from_dict = SearchRequestExtract.from_dict(search_request_extract_dict)