generate_table_insights
Extract AI-driven insights from table data, enabling natural language-based analysis to support core database operations and enhance data exploration.
Instructions
Generate AI-powered insights about a table's data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sample_limit | No | ||
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"sample_limit": {
"default": 20,
"title": "Sample Limit",
"type": "integer"
},
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}