fusion_analyze
Analyze data using fusion algorithms with statistical, machine learning, or hybrid methods to extract insights and patterns.
Instructions
Analyze data using fusion algorithms
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | Data to analyze | |
method | No | Analysis method to use |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "Data to analyze",
"type": "string"
},
"method": {
"description": "Analysis method to use",
"enum": [
"statistical",
"ml",
"hybrid"
],
"type": "string"
}
},
"required": [
"data"
],
"type": "object"
}