Files
my-pal-mcp-server/tools/consensus.py
Beehive Innovations c960bcb720 Add DocGen tool with comprehensive documentation generation capabilities (#109)
* WIP: new workflow architecture

* WIP: further improvements and cleanup

* WIP: cleanup and docks, replace old tool with new

* WIP: cleanup and docks, replace old tool with new

* WIP: new planner implementation using workflow

* WIP: precommit tool working as a workflow instead of a basic tool
Support for passing False to use_assistant_model to skip external models completely and use Claude only

* WIP: precommit workflow version swapped with old

* WIP: codereview

* WIP: replaced codereview

* WIP: replaced codereview

* WIP: replaced refactor

* WIP: workflow for thinkdeep

* WIP: ensure files get embedded correctly

* WIP: thinkdeep replaced with workflow version

* WIP: improved messaging when an external model's response is received

* WIP: analyze tool swapped

* WIP: updated tests
* Extract only the content when building history
* Use "relevant_files" for workflow tools only

* WIP: updated tests
* Extract only the content when building history
* Use "relevant_files" for workflow tools only

* WIP: fixed get_completion_next_steps_message missing param

* Fixed tests
Request for files consistently

* Fixed tests
Request for files consistently

* Fixed tests

* New testgen workflow tool
Updated docs

* Swap testgen workflow

* Fix CI test failures by excluding API-dependent tests

- Update GitHub Actions workflow to exclude simulation tests that require API keys
- Fix collaboration tests to properly mock workflow tool expert analysis calls
- Update test assertions to handle new workflow tool response format
- Ensure unit tests run without external API dependencies in CI

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

* WIP - Update tests to match new tools

* WIP - Update tests to match new tools

* WIP - Update tests to match new tools

* Should help with https://github.com/BeehiveInnovations/zen-mcp-server/issues/97
Clear python cache when running script: https://github.com/BeehiveInnovations/zen-mcp-server/issues/96
Improved retry error logging
Cleanup

* WIP - chat tool using new architecture and improved code sharing

* Removed todo

* Removed todo

* Cleanup old name

* Tweak wordings

* Tweak wordings
Migrate old tests

* Support for Flash 2.0 and Flash Lite 2.0

* Support for Flash 2.0 and Flash Lite 2.0

* Support for Flash 2.0 and Flash Lite 2.0
Fixed test

* Improved consensus to use the workflow base class

* Improved consensus to use the workflow base class

* Allow images

* Allow images

* Replaced old consensus tool

* Cleanup tests

* Tests for prompt size

* New tool: docgen
Tests for prompt size
Fixes: https://github.com/BeehiveInnovations/zen-mcp-server/issues/107
Use available token size limits: https://github.com/BeehiveInnovations/zen-mcp-server/issues/105

* Improved docgen prompt
Exclude TestGen from pytest inclusion

* Updated errors

* Lint

* DocGen instructed not to fix bugs, surface them and stick to d

* WIP

* Stop claude from being lazy and only documenting a small handful

* More style rules

---------

Co-authored-by: Claude <noreply@anthropic.com>
2025-06-22 10:21:19 +04:00

642 lines
29 KiB
Python

"""
Consensus tool - Step-by-step multi-model consensus with expert analysis
This tool provides a structured workflow for gathering consensus from multiple models.
It guides Claude through systematic steps where Claude first provides its own analysis,
then consults each requested model one by one, and finally synthesizes all perspectives.
Key features:
- Step-by-step consensus workflow with progress tracking
- Claude's initial neutral analysis followed by model-specific consultations
- Context-aware file embedding
- Support for stance-based analysis (for/against/neutral)
- Final synthesis combining all perspectives
"""
from __future__ import annotations
import json
import logging
from typing import TYPE_CHECKING, Any
from pydantic import Field, model_validator
if TYPE_CHECKING:
from tools.models import ToolModelCategory
from mcp.types import TextContent
from config import TEMPERATURE_ANALYTICAL
from systemprompts import CONSENSUS_PROMPT
from tools.shared.base_models import WorkflowRequest
from .workflow.base import WorkflowTool
logger = logging.getLogger(__name__)
# Tool-specific field descriptions for consensus workflow
CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS = {
"step": (
"Describe your current consensus analysis step. In step 1, provide your own neutral, balanced analysis "
"of the proposal/idea/plan after thinking carefully about all aspects. Consider technical feasibility, "
"user value, implementation complexity, and alternatives. In subsequent steps (2+), you will receive "
"individual model responses to synthesize. CRITICAL: Be thorough and balanced in your initial assessment, "
"considering both benefits and risks, opportunities and challenges."
),
"step_number": (
"The index of the current step in the consensus workflow, beginning at 1. Step 1 is your analysis, "
"steps 2+ are for processing individual model responses."
),
"total_steps": (
"Total number of steps needed. This equals 1 (your analysis) + number of models to consult + "
"1 (final synthesis)."
),
"next_step_required": ("Set to true if more models need to be consulted. False when ready for final synthesis."),
"findings": (
"In step 1, provide your comprehensive analysis of the proposal. In steps 2+, summarize the key points "
"from the model response received, noting agreements and disagreements with previous analyses."
),
"relevant_files": (
"Files that are relevant to the consensus analysis. Include files that help understand the proposal, "
"provide context, or contain implementation details."
),
"models": (
"List of model configurations to consult. Each can have a model name, stance (for/against/neutral), "
"and optional custom stance prompt. The same model can be used multiple times with different stances, "
"but each model + stance combination must be unique. "
"Example: [{'model': 'o3', 'stance': 'for'}, {'model': 'o3', 'stance': 'against'}, "
"{'model': 'flash', 'stance': 'neutral'}]"
),
"current_model_index": (
"Internal tracking of which model is being consulted (0-based index). Used to determine which model "
"to call next."
),
"model_responses": ("Accumulated responses from models consulted so far. Internal field for tracking progress."),
"images": (
"Optional list of image paths or base64 data URLs for visual context. Useful for UI/UX discussions, "
"architecture diagrams, mockups, or any visual references that help inform the consensus analysis."
),
}
class ModelConfig(dict):
"""Model configuration for consensus workflow"""
class ConsensusRequest(WorkflowRequest):
"""Request model for consensus workflow steps"""
# Required fields for each step
step: str = Field(..., description=CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["step"])
step_number: int = Field(..., description=CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["step_number"])
total_steps: int = Field(..., description=CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["total_steps"])
next_step_required: bool = Field(..., description=CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["next_step_required"])
# Investigation tracking fields
findings: str = Field(..., description=CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["findings"])
confidence: str | None = Field("exploring", exclude=True) # Not used in consensus workflow
# Consensus-specific fields (only needed in step 1)
models: list[dict] | None = Field(None, description=CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["models"])
relevant_files: list[str] | None = Field(
default_factory=list,
description=CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["relevant_files"],
)
# Internal tracking fields
current_model_index: int | None = Field(
0,
description=CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["current_model_index"],
)
model_responses: list[dict] | None = Field(
default_factory=list,
description=CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["model_responses"],
)
# Override inherited fields to exclude them from schema
temperature: float | None = Field(default=None, exclude=True)
thinking_mode: str | None = Field(default=None, exclude=True)
use_websearch: bool | None = Field(default=None, exclude=True)
# Not used in consensus workflow
files_checked: list[str] | None = Field(default_factory=list, exclude=True)
relevant_context: list[str] | None = Field(default_factory=list, exclude=True)
issues_found: list[dict] | None = Field(default_factory=list, exclude=True)
hypothesis: str | None = Field(None, exclude=True)
backtrack_from_step: int | None = Field(None, exclude=True)
images: list[str] | None = Field(default_factory=list) # Enable images for consensus workflow
@model_validator(mode="after")
def validate_step_one_requirements(self):
"""Ensure step 1 has required models field and unique model+stance combinations."""
if self.step_number == 1:
if not self.models:
raise ValueError("Step 1 requires 'models' field to specify which models to consult")
# Check for unique model + stance combinations
seen_combinations = set()
for model_config in self.models:
model_name = model_config.get("model", "")
stance = model_config.get("stance", "neutral")
combination = f"{model_name}:{stance}"
if combination in seen_combinations:
raise ValueError(
f"Duplicate model + stance combination found: {model_name} with stance '{stance}'. "
f"Each model + stance combination must be unique."
)
seen_combinations.add(combination)
return self
class ConsensusTool(WorkflowTool):
"""
Consensus workflow tool for step-by-step multi-model consensus gathering.
This tool implements a structured consensus workflow where Claude first provides
its own neutral analysis, then consults each specified model individually,
and finally synthesizes all perspectives into a unified recommendation.
"""
def __init__(self):
super().__init__()
self.initial_prompt: str | None = None
self.models_to_consult: list[dict] = []
self.accumulated_responses: list[dict] = []
self._current_arguments: dict[str, Any] = {}
def get_name(self) -> str:
return "consensus"
def get_description(self) -> str:
return (
"COMPREHENSIVE CONSENSUS WORKFLOW - Step-by-step multi-model consensus with structured analysis. "
"This tool guides you through a systematic process where you:\\n\\n"
"1. Start with step 1: provide your own neutral analysis of the proposal\\n"
"2. The tool will then consult each specified model one by one\\n"
"3. You'll receive each model's response in subsequent steps\\n"
"4. Track and synthesize perspectives as they accumulate\\n"
"5. Final step: present comprehensive consensus and recommendations\\n\\n"
"IMPORTANT: This workflow enforces sequential model consultation:\\n"
"- Step 1 is always your independent analysis\\n"
"- Each subsequent step processes one model response\\n"
"- Total steps = 1 (your analysis) + number of models + 1 (synthesis)\\n"
"- Models can have stances (for/against/neutral) for structured debate\\n"
"- Same model can be used multiple times with different stances\\n"
"- Each model + stance combination must be unique\\n\\n"
"Perfect for: complex decisions, architectural choices, feature proposals, "
"technology evaluations, strategic planning."
)
def get_system_prompt(self) -> str:
# For Claude's initial analysis, use a neutral version of the consensus prompt
return CONSENSUS_PROMPT.replace(
"{stance_prompt}",
"""BALANCED PERSPECTIVE
Provide objective analysis considering both positive and negative aspects. However, if there is overwhelming evidence
that the proposal clearly leans toward being exceptionally good or particularly problematic, you MUST accurately
reflect this reality. Being "balanced" means being truthful about the weight of evidence, not artificially creating
50/50 splits when the reality is 90/10.
Your analysis should:
- Present all significant pros and cons discovered
- Weight them according to actual impact and likelihood
- If evidence strongly favors one conclusion, clearly state this
- Provide proportional coverage based on the strength of arguments
- Help the questioner see the true balance of considerations
Remember: Artificial balance that misrepresents reality is not helpful. True balance means accurate representation
of the evidence, even when it strongly points in one direction.""",
)
def get_default_temperature(self) -> float:
return TEMPERATURE_ANALYTICAL
def get_model_category(self) -> ToolModelCategory:
"""Consensus workflow requires extended reasoning"""
from tools.models import ToolModelCategory
return ToolModelCategory.EXTENDED_REASONING
def get_workflow_request_model(self):
"""Return the consensus workflow-specific request model."""
return ConsensusRequest
def get_input_schema(self) -> dict[str, Any]:
"""Generate input schema for consensus workflow."""
from .workflow.schema_builders import WorkflowSchemaBuilder
# Consensus workflow-specific field overrides
consensus_field_overrides = {
"step": {
"type": "string",
"description": CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["step"],
},
"step_number": {
"type": "integer",
"minimum": 1,
"description": CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["step_number"],
},
"total_steps": {
"type": "integer",
"minimum": 1,
"description": CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["total_steps"],
},
"next_step_required": {
"type": "boolean",
"description": CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["next_step_required"],
},
"findings": {
"type": "string",
"description": CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["findings"],
},
"relevant_files": {
"type": "array",
"items": {"type": "string"},
"description": CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["relevant_files"],
},
"models": {
"type": "array",
"items": {
"type": "object",
"properties": {
"model": {"type": "string"},
"stance": {"type": "string", "enum": ["for", "against", "neutral"], "default": "neutral"},
"stance_prompt": {"type": "string"},
},
"required": ["model"],
},
"description": CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["models"],
},
"current_model_index": {
"type": "integer",
"minimum": 0,
"description": CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["current_model_index"],
},
"model_responses": {
"type": "array",
"items": {"type": "object"},
"description": CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["model_responses"],
},
"images": {
"type": "array",
"items": {"type": "string"},
"description": CONSENSUS_WORKFLOW_FIELD_DESCRIPTIONS["images"],
},
}
# Build schema without standard workflow fields we don't use
schema = WorkflowSchemaBuilder.build_schema(
tool_specific_fields=consensus_field_overrides,
model_field_schema=self.get_model_field_schema(),
auto_mode=self.is_effective_auto_mode(),
tool_name=self.get_name(),
)
# Remove unused workflow fields
if "properties" in schema:
for field in [
"files_checked",
"relevant_context",
"issues_found",
"hypothesis",
"backtrack_from_step",
"confidence", # Not used in consensus workflow
"temperature", # Not used in consensus workflow
"thinking_mode", # Not used in consensus workflow
"use_websearch", # Not used in consensus workflow
"relevant_files", # Not used in consensus workflow
]:
schema["properties"].pop(field, None)
return schema
def get_required_actions(
self, step_number: int, confidence: str, findings: str, total_steps: int
) -> list[str]: # noqa: ARG002
"""Define required actions for each consensus phase.
Note: confidence parameter is kept for compatibility with base class but not used.
"""
if step_number == 1:
# Claude's initial analysis
return [
"You've provided your initial analysis. The tool will now consult other models.",
"Wait for the next step to receive the first model's response.",
]
elif step_number < total_steps - 1:
# Processing individual model responses
return [
"Review the model response provided in this step",
"Note key agreements and disagreements with previous analyses",
"Wait for the next model's response",
]
else:
# Ready for final synthesis
return [
"All models have been consulted",
"Synthesize all perspectives into a comprehensive recommendation",
"Identify key points of agreement and disagreement",
"Provide clear, actionable guidance based on the consensus",
]
def should_call_expert_analysis(self, consolidated_findings, request=None) -> bool:
"""Consensus workflow doesn't use traditional expert analysis - it consults models step by step."""
return False
def prepare_expert_analysis_context(self, consolidated_findings) -> str:
"""Not used in consensus workflow."""
return ""
def requires_expert_analysis(self) -> bool:
"""Consensus workflow handles its own model consultations."""
return False
# Hook method overrides for consensus-specific behavior
def prepare_step_data(self, request) -> dict:
"""Prepare consensus-specific step data."""
step_data = {
"step": request.step,
"step_number": request.step_number,
"findings": request.findings,
"files_checked": [], # Not used
"relevant_files": request.relevant_files or [],
"relevant_context": [], # Not used
"issues_found": [], # Not used
"confidence": "exploring", # Not used, kept for compatibility
"hypothesis": None, # Not used
"images": request.images or [], # Now used for visual context
}
return step_data
async def handle_work_completion(self, response_data: dict, request, arguments: dict) -> dict: # noqa: ARG002
"""Handle consensus workflow completion - no expert analysis, just final synthesis."""
response_data["consensus_complete"] = True
response_data["status"] = "consensus_workflow_complete"
# Prepare final synthesis data
response_data["complete_consensus"] = {
"initial_prompt": self.initial_prompt,
"models_consulted": [m["model"] + ":" + m.get("stance", "neutral") for m in self.accumulated_responses],
"total_responses": len(self.accumulated_responses),
"consensus_confidence": "high", # Consensus complete
}
response_data["next_steps"] = (
"CONSENSUS GATHERING IS COMPLETE. You MUST now synthesize all perspectives and present:\n"
"1. Key points of AGREEMENT across models\n"
"2. Key points of DISAGREEMENT and why they differ\n"
"3. Your final consolidated recommendation\n"
"4. Specific, actionable next steps for implementation\n"
"5. Critical risks or concerns that must be addressed"
)
return response_data
def handle_work_continuation(self, response_data: dict, request) -> dict:
"""Handle continuation between consensus steps."""
current_idx = request.current_model_index or 0
if request.step_number == 1:
# After Claude's initial analysis, prepare to consult first model
response_data["status"] = "consulting_models"
response_data["next_model"] = self.models_to_consult[0] if self.models_to_consult else None
response_data["next_steps"] = (
"Your initial analysis is complete. The tool will now consult the specified models."
)
elif current_idx < len(self.models_to_consult):
next_model = self.models_to_consult[current_idx]
response_data["status"] = "consulting_next_model"
response_data["next_model"] = next_model
response_data["models_remaining"] = len(self.models_to_consult) - current_idx
response_data["next_steps"] = f"Model consultation in progress. Next: {next_model['model']}"
else:
response_data["status"] = "ready_for_synthesis"
response_data["next_steps"] = "All models consulted. Ready for final synthesis."
return response_data
async def execute_workflow(self, arguments: dict[str, Any]) -> list:
"""Override execute_workflow to handle model consultations between steps."""
# Store arguments
self._current_arguments = arguments
# Validate request
request = self.get_workflow_request_model()(**arguments)
# On first step, store the models to consult
if request.step_number == 1:
self.initial_prompt = request.step
self.models_to_consult = request.models or []
self.accumulated_responses = []
# Set total steps: 1 (Claude) + len(models) + 1 (synthesis)
request.total_steps = 1 + len(self.models_to_consult) + 1
# If this is a model consultation step (2 through total_steps-1)
elif request.step_number > 1 and request.step_number < request.total_steps:
# Get the current model to consult
model_idx = request.current_model_index or 0
if model_idx < len(self.models_to_consult):
# Consult the model
model_response = await self._consult_model(self.models_to_consult[model_idx], request)
# Add to accumulated responses
self.accumulated_responses.append(model_response)
# Include the model response in the step data
response_data = {
"status": "model_consulted",
"step_number": request.step_number,
"total_steps": request.total_steps,
"model_consulted": model_response["model"],
"model_stance": model_response.get("stance", "neutral"),
"model_response": model_response,
"current_model_index": model_idx + 1,
"next_step_required": request.step_number < request.total_steps - 1,
}
if request.step_number < request.total_steps - 1:
response_data["next_steps"] = (
f"Model {model_response['model']} has provided its {model_response.get('stance', 'neutral')} "
f"perspective. Please analyze this response and call {self.get_name()} again with:\n"
f"- step_number: {request.step_number + 1}\n"
f"- findings: Summarize key points from this model's response\n"
f"- current_model_index: {model_idx + 1}\n"
f"- model_responses: (append this response to the list)"
)
else:
response_data["next_steps"] = (
"All models have been consulted. For the final step, synthesize all perspectives."
)
return [TextContent(type="text", text=json.dumps(response_data, indent=2))]
# Otherwise, use standard workflow execution
return await super().execute_workflow(arguments)
async def _consult_model(self, model_config: dict, request) -> dict:
"""Consult a single model and return its response."""
try:
# Get the provider for this model
model_name = model_config["model"]
provider = self.get_model_provider(model_name)
# Prepare the prompt with any relevant files
prompt = self.initial_prompt
if request.relevant_files:
file_content, _ = self._prepare_file_content_for_prompt(
request.relevant_files,
request.continuation_id,
"Context files",
)
if file_content:
prompt = f"{prompt}\n\n=== CONTEXT FILES ===\n{file_content}\n=== END CONTEXT ==="
# Get stance-specific system prompt
stance = model_config.get("stance", "neutral")
stance_prompt = model_config.get("stance_prompt")
system_prompt = self._get_stance_enhanced_prompt(stance, stance_prompt)
# Call the model
response = provider.generate_content(
prompt=prompt,
model_name=model_name,
system_prompt=system_prompt,
temperature=0.2, # Low temperature for consistency
thinking_mode="medium",
images=request.images if request.images else None,
)
return {
"model": model_name,
"stance": stance,
"status": "success",
"verdict": response.content,
"metadata": {
"provider": provider.get_provider_type().value,
},
}
except Exception as e:
logger.exception("Error consulting model %s", model_config)
return {
"model": model_config.get("model", "unknown"),
"stance": model_config.get("stance", "neutral"),
"status": "error",
"error": str(e),
}
def _get_stance_enhanced_prompt(self, stance: str, custom_stance_prompt: str | None = None) -> str:
"""Get the system prompt with stance injection."""
base_prompt = CONSENSUS_PROMPT
if custom_stance_prompt:
return base_prompt.replace("{stance_prompt}", custom_stance_prompt)
stance_prompts = {
"for": """SUPPORTIVE PERSPECTIVE WITH INTEGRITY
You are tasked with advocating FOR this proposal, but with CRITICAL GUARDRAILS:
MANDATORY ETHICAL CONSTRAINTS:
- This is NOT a debate for entertainment. You MUST act in good faith and in the best interest of the questioner
- You MUST think deeply about whether supporting this idea is safe, sound, and passes essential requirements
- You MUST be direct and unequivocal in saying "this is a bad idea" when it truly is
- There must be at least ONE COMPELLING reason to be optimistic, otherwise DO NOT support it
WHEN TO REFUSE SUPPORT (MUST OVERRIDE STANCE):
- If the idea is fundamentally harmful to users, project, or stakeholders
- If implementation would violate security, privacy, or ethical standards
- If the proposal is technically infeasible within realistic constraints
- If costs/risks dramatically outweigh any potential benefits
YOUR SUPPORTIVE ANALYSIS SHOULD:
- Identify genuine strengths and opportunities
- Propose solutions to overcome legitimate challenges
- Highlight synergies with existing systems
- Suggest optimizations that enhance value
- Present realistic implementation pathways
Remember: Being "for" means finding the BEST possible version of the idea IF it has merit, not blindly supporting bad """
"ideas."
"",
"against": """CRITICAL PERSPECTIVE WITH RESPONSIBILITY
You are tasked with critiquing this proposal, but with ESSENTIAL BOUNDARIES:
MANDATORY FAIRNESS CONSTRAINTS:
- You MUST NOT oppose genuinely excellent, common-sense ideas just to be contrarian
- You MUST acknowledge when a proposal is fundamentally sound and well-conceived
- You CANNOT give harmful advice or recommend against beneficial changes
- If the idea is outstanding, say so clearly while offering constructive refinements
WHEN TO MODERATE CRITICISM (MUST OVERRIDE STANCE):
- If the proposal addresses critical user needs effectively
- If it follows established best practices with good reason
- If benefits clearly and substantially outweigh risks
- If it's the obvious right solution to the problem
YOUR CRITICAL ANALYSIS SHOULD:
- Identify legitimate risks and failure modes
- Point out overlooked complexities
- Suggest more efficient alternatives
- Highlight potential negative consequences
- Question assumptions that may be flawed
Remember: Being "against" means rigorous scrutiny to ensure quality, not undermining good ideas that deserve """
"support."
"",
"neutral": """BALANCED PERSPECTIVE
Provide objective analysis considering both positive and negative aspects. However, if there is overwhelming evidence
that the proposal clearly leans toward being exceptionally good or particularly problematic, you MUST accurately
reflect this reality. Being "balanced" means being truthful about the weight of evidence, not artificially creating
50/50 splits when the reality is 90/10.
Your analysis should:
- Present all significant pros and cons discovered
- Weight them according to actual impact and likelihood
- If evidence strongly favors one conclusion, clearly state this
- Provide proportional coverage based on the strength of arguments
- Help the questioner see the true balance of considerations
Remember: Artificial balance that misrepresents reality is not helpful. True balance means accurate representation
of the evidence, even when it strongly points in one direction.""",
}
stance_prompt = stance_prompts.get(stance, stance_prompts["neutral"])
return base_prompt.replace("{stance_prompt}", stance_prompt)
def customize_workflow_response(self, response_data: dict, request) -> dict:
"""Customize response for consensus workflow."""
# Store model responses in the response for tracking
if self.accumulated_responses:
response_data["accumulated_responses"] = self.accumulated_responses
# Add consensus-specific fields
if request.step_number == 1:
response_data["consensus_workflow_status"] = "initial_analysis_complete"
elif request.step_number < request.total_steps - 1:
response_data["consensus_workflow_status"] = "consulting_models"
else:
response_data["consensus_workflow_status"] = "ready_for_synthesis"
return response_data
def store_initial_issue(self, step_description: str):
"""Store initial prompt for model consultations."""
self.initial_prompt = step_description
# Required abstract methods from BaseTool
def get_request_model(self):
"""Return the consensus workflow-specific request model."""
return ConsensusRequest
async def prepare_prompt(self, request) -> str: # noqa: ARG002
"""Not used - workflow tools use execute_workflow()."""
return "" # Workflow tools use execute_workflow() directly