analyze_query_results
Execute a query on Snowflake databases and analyze its results with AI to generate insights, summaries, or other data interpretations.
Instructions
Execute a query and analyze its results using AI
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysis_type | No | summary | |
query | Yes | ||
results_limit | No |
Input Schema (JSON Schema)
{
"properties": {
"analysis_type": {
"default": "summary",
"title": "Analysis Type",
"type": "string"
},
"query": {
"title": "Query",
"type": "string"
},
"results_limit": {
"default": 100,
"title": "Results Limit",
"type": "integer"
}
},
"required": [
"query"
],
"type": "object"
}