get_earthquake_news
Retrieve earthquake-related news for a specific location and date range. Input the location and optional start and end timestamps to access relevant earthquake reports from Malaysia's weather data.
Instructions
Fetch earthquake news for a given location within a specified date range.
Args:
location: Name or identifier of the place where the earthquake(s) occurred.
date_start: The earliest timestamp in the form of <YYYY-MM-DD HH:mm:ss> (inclusive) to start searching for earthquake news. If omitted, defaults to the current date.
date_end: The latest timestamp in the form of <YYYY-MM-DD HH:mm:ss> (inclusive) to stop searching for earthquake news. If omitted, defaults to the current date.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datetime_end | No | ||
datetime_start | No | ||
location | Yes |
Input Schema (JSON Schema)
{
"properties": {
"datetime_end": {
"default": null,
"title": "Datetime End",
"type": "string"
},
"datetime_start": {
"default": null,
"title": "Datetime Start",
"type": "string"
},
"location": {
"title": "Location",
"type": "string"
}
},
"required": [
"location"
],
"title": "get_earthquake_newsArguments",
"type": "object"
}