consensus
Analyze proposals, ideas, or decisions by gathering perspectives from multiple AI models to determine consensus, enabling informed and balanced outcomes.
Instructions
Get consensus from multiple AI models on a proposal
Input Schema
Name | Required | Description | Default |
---|---|---|---|
files | No | Relevant file paths for context (optional) | |
models | Yes | List of models to consult with their stances | |
proposal | Yes | The proposal, idea, or decision to analyze from multiple perspectives |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"files": {
"description": "Relevant file paths for context (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"models": {
"description": "List of models to consult with their stances",
"items": {
"additionalProperties": false,
"properties": {
"model": {
"description": "Model name to consult (e.g., 'gemini-pro', 'gpt-4', 'gpt-5')",
"type": "string"
},
"provider": {
"description": "AI provider for this model",
"enum": [
"openai",
"gemini",
"azure",
"grok"
],
"type": "string"
},
"stance": {
"default": "neutral",
"description": "Perspective stance for this model",
"enum": [
"for",
"against",
"neutral"
],
"type": "string"
}
},
"required": [
"model"
],
"type": "object"
},
"minItems": 1,
"type": "array"
},
"proposal": {
"description": "The proposal, idea, or decision to analyze from multiple perspectives",
"type": "string"
}
},
"required": [
"proposal",
"models"
],
"type": "object"
}