live_search
Perform real-time web searches to find current information, filter results by date and location, and retrieve cited sources for accurate research and fact-checking.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country | No | ||
from_date | No | ||
max_search_results | No | ||
mode | No | on | |
model | No | grok-4 | |
prompt | Yes | ||
return_citations | No | ||
rss_links | No | ||
sources | No | ||
system_prompt | No | ||
to_date | No |
Input Schema (JSON Schema)
{
"properties": {
"country": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Country"
},
"from_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "From Date"
},
"max_search_results": {
"default": 20,
"title": "Max Search Results",
"type": "integer"
},
"mode": {
"default": "on",
"title": "Mode",
"type": "string"
},
"model": {
"default": "grok-4",
"title": "Model",
"type": "string"
},
"prompt": {
"title": "Prompt",
"type": "string"
},
"return_citations": {
"default": true,
"title": "Return Citations",
"type": "boolean"
},
"rss_links": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Rss Links"
},
"sources": {
"anyOf": [
{
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Sources"
},
"system_prompt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "System Prompt"
},
"to_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "To Date"
}
},
"required": [
"prompt"
],
"type": "object"
}