perplexity_search
Generate AI-powered responses by combining real-time web search with advanced language models, ideal for complex queries requiring reasoning and synthesis across multiple sources, with contextual memory for follow-up questions.
Instructions
AI-powered response generation combining real-time web search with advanced language models. Best for complex queries requiring reasoning and synthesis across multiple sources. Features contextual memory for follow-up questions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exclude_domains | No | List of domains to exclude from search results | |
include_domains | No | List of domains to include in search results | |
limit | No | Maximum number of results to return | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"exclude_domains": {
"description": "List of domains to exclude from search results",
"items": {
"type": "string"
},
"type": "array"
},
"include_domains": {
"description": "List of domains to include in search results",
"items": {
"type": "string"
},
"type": "array"
},
"limit": {
"description": "Maximum number of results to return",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}