hybrid_analysis
Analyze complex data using a hybrid local+cloud approach. Process inputs with reasoning, technical, or creative methods to generate actionable insights efficiently.
Instructions
Hybrid local+cloud analysis for complex data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
approach | No | Analysis approach: reasoning, technical, creative | reasoning |
data | Yes | Data to analyze | |
model | No | Local model for analysis | architecture-reasoning:latest |
Input Schema (JSON Schema)
{
"properties": {
"approach": {
"default": "reasoning",
"description": "Analysis approach: reasoning, technical, creative",
"type": "string"
},
"data": {
"description": "Data to analyze",
"type": "string"
},
"model": {
"default": "architecture-reasoning:latest",
"description": "Local model for analysis",
"type": "string"
}
},
"required": [
"data"
],
"type": "object"
}