Generic naming to work with Gemini CLI / Claude Code
This commit is contained in:
@@ -124,12 +124,12 @@ class TestConsensusThreeModels(BaseSimulatorTest):
|
||||
self.logger.info(f"Model name in metadata: {metadata.get('model_name')}")
|
||||
|
||||
# Verify we have analysis from Claude
|
||||
claude_analysis = consensus_data.get("claude_analysis")
|
||||
if not claude_analysis:
|
||||
agent_analysis = consensus_data.get("agent_analysis")
|
||||
if not agent_analysis:
|
||||
self.logger.error("Missing Claude's analysis in step 1")
|
||||
return False
|
||||
|
||||
analysis_text = claude_analysis.get("initial_analysis", "")
|
||||
analysis_text = agent_analysis.get("initial_analysis", "")
|
||||
self.logger.info(f"Claude analysis length: {len(analysis_text)} characters")
|
||||
|
||||
self.logger.info("✓ Three-model consensus tool test completed successfully")
|
||||
|
||||
@@ -87,8 +87,8 @@ class TestConsensusWorkflowAccurate(ConversationBaseTest):
|
||||
return False
|
||||
|
||||
# Verify Claude's analysis is included
|
||||
if "claude_analysis" not in step1_data:
|
||||
self.logger.error("Expected claude_analysis in step 1 response")
|
||||
if "agent_analysis" not in step1_data:
|
||||
self.logger.error("Expected agent_analysis in step 1 response")
|
||||
return False
|
||||
|
||||
# Verify first model response is included
|
||||
|
||||
Reference in New Issue
Block a user