blazesql_query
Execute natural language queries on BlazeSQL databases by specifying the database ID and query request for quick, intuitive data retrieval and analysis.
Instructions
Executes a natural language query against a specified BlazeSQL database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
db_id | Yes | The ID of the BlazeSQL database connection to query. | |
natural_language_request | Yes | The query expressed in natural language (e.g., 'show me total users per city'). |
Input Schema (JSON Schema)
{
"properties": {
"db_id": {
"description": "The ID of the BlazeSQL database connection to query.",
"type": "string"
},
"natural_language_request": {
"description": "The query expressed in natural language (e.g., 'show me total users per city').",
"type": "string"
}
},
"required": [
"db_id",
"natural_language_request"
],
"type": "object"
}