kagi_fastgpt_search
Delivers AI-generated answers with citations in under 900ms, combining rapid response with comprehensive search results. Includes options to filter by specific domains.
Instructions
Quick AI-generated answers with citations, optimized for rapid response (900ms typical start time). Runs full search underneath for enriched answers.
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"
}