semantic_search_requests
Search for specific requests within a page URL using semantic querying to retrieve the top 10 relevant results. Ideal for analyzing and extracting targeted browser interactions.
Instructions
Semantically search for requests that occurred within a page URL. Returns the top 10 results.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_url | Yes | The page within which to search for requests | |
query | Yes | Your search request. Make this specific and detailed to get the best results |
Input Schema (JSON Schema)
{
"properties": {
"page_url": {
"description": "The page within which to search for requests",
"type": "string"
},
"query": {
"description": "Your search request. Make this specific and detailed to get the best results",
"type": "string"
}
},
"required": [
"query",
"page_url"
],
"type": "object"
}