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. The resulting page markdown will update the value of the snippet field on the respective result item. NOTE: Use of this option incurs additional cost, billed at your account's rate for the Extract API based on the number of units requested. You will not be charged if there were no results to extract.
| 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. This time budget is in addition to the allocated top-level search timeout, so that you can control both independently. | [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)