deep_research
Conduct detailed web searches with contextually relevant results and citations using Perplexity's Deep Research API, filtering by recency as needed.
Instructions
Perform a comprehensive web search using Perplexity's Deep Research API, which provides detailed and contextually relevant results with citations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The search query to perform | |
search_recency_filter | No | Filter search results by recency (options: month, week, day, hour) |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The search query to perform",
"type": "string"
},
"search_recency_filter": {
"description": "Filter search results by recency (options: month, week, day, hour)",
"enum": [
"month",
"week",
"day",
"hour"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}