Spaces:
Sleeping
Sleeping
File size: 10,065 Bytes
a248c93 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
#!/usr/bin/env python3
"""
Test Production Fixes for GAIA Agent System
Quick validation that error handling improvements are working
"""
import logging
import time
from typing import List, Dict, Any
from models.qwen_client import QwenClient
from workflow.gaia_workflow import SimpleGAIAWorkflow
# Configure logging
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
logger = logging.getLogger(__name__)
class ProductionFixTester:
"""Test the production fixes for error handling and robustness"""
def __init__(self):
try:
self.llm_client = QwenClient()
self.workflow = SimpleGAIAWorkflow(self.llm_client)
logger.info("β
Test environment initialized")
except Exception as e:
logger.error(f"β Failed to initialize test environment: {e}")
raise
def test_error_handling_scenarios(self) -> Dict[str, Any]:
"""Test various error scenarios that were causing production failures"""
test_scenarios = [
{
"name": "Wikipedia Research Failure Simulation",
"question": "What is the most obscure fictional character from the imaginary book 'Zzzzz12345NonExistent'?",
"expected_behavior": "Should fail gracefully and provide fallback response"
},
{
"name": "Mathematical Reasoning with Complex Data",
"question": "Calculate the square root of negative infinity divided by zero plus the factorial of pi",
"expected_behavior": "Should handle impossible math gracefully"
},
{
"name": "Conversion with Invalid Units",
"question": "Convert 50 zorkples to flibbers using the international zorkple standard",
"expected_behavior": "Should recognize invalid units and respond appropriately"
},
{
"name": "Web Research with Rate Limiting Simulation",
"question": "What are the current stock prices for all Fortune 500 companies as of this exact moment?",
"expected_behavior": "Should handle external API limitations gracefully"
},
{
"name": "Complex Multi-Agent Question",
"question": "Analyze the correlation between quantum entanglement and the price of tea in 17th century Mongolia while also calculating the fibonacci sequence backwards from infinity",
"expected_behavior": "Should route to multiple agents and synthesize results"
}
]
results = {
"test_summary": {
"total_tests": len(test_scenarios),
"passed": 0,
"failed": 0,
"errors": []
},
"detailed_results": []
}
for i, scenario in enumerate(test_scenarios, 1):
logger.info(f"\nπ§ͺ Test {i}/{len(test_scenarios)}: {scenario['name']}")
logger.info(f"Question: {scenario['question']}")
start_time = time.time()
try:
# Process the question
result_state = self.workflow.process_question(
question=scenario['question'],
task_id=f"fix_test_{i}"
)
processing_time = time.time() - start_time
# Analyze the result
test_result = self._analyze_test_result(scenario, result_state, processing_time)
results["detailed_results"].append(test_result)
if test_result["passed"]:
results["test_summary"]["passed"] += 1
logger.info(f"β
PASSED: {test_result['reason']}")
else:
results["test_summary"]["failed"] += 1
logger.warning(f"β FAILED: {test_result['reason']}")
# Log key metrics
logger.info(f" π Confidence: {result_state.final_confidence:.2f}")
logger.info(f" β±οΈ Time: {processing_time:.2f}s")
logger.info(f" π° Cost: ${result_state.total_cost:.4f}")
logger.info(f" π― Answer: {result_state.final_answer[:100]}...")
except Exception as e:
error_msg = f"Exception in test {i}: {str(e)}"
logger.error(f"β ERROR: {error_msg}")
results["test_summary"]["errors"].append(error_msg)
results["test_summary"]["failed"] += 1
results["detailed_results"].append({
"test_name": scenario['name'],
"passed": False,
"reason": f"Test exception: {str(e)}",
"processing_time": time.time() - start_time,
"confidence": 0.0,
"answer": "Test failed with exception"
})
return results
def _analyze_test_result(self, scenario: Dict[str, Any], result_state, processing_time: float) -> Dict[str, Any]:
"""Analyze if a test result meets expectations for error handling"""
test_result = {
"test_name": scenario['name'],
"passed": False,
"reason": "",
"processing_time": processing_time,
"confidence": result_state.final_confidence,
"answer": result_state.final_answer,
"agents_used": [role.value for role in result_state.agent_results.keys()],
"error_count": len(result_state.error_messages)
}
# Check for catastrophic failures
if result_state.final_answer is None or result_state.final_answer == "":
test_result["reason"] = "Critical failure: No answer generated"
return test_result
# Check for system crash indicators
crash_indicators = [
"system not initialized",
"workflow execution failed",
"unable to process question - no agent results available"
]
answer_lower = result_state.final_answer.lower()
if any(indicator in answer_lower for indicator in crash_indicators):
test_result["reason"] = "System crash detected in response"
return test_result
# Check for graceful error handling
graceful_indicators = [
"processing encountered difficulties",
"research sources failed",
"reasoning failed",
"conversion failed",
"mathematical complexity",
"limited information available"
]
has_graceful_handling = any(indicator in answer_lower for indicator in graceful_indicators)
# Evaluate based on scenario expectations
if has_graceful_handling and result_state.final_confidence >= 0.1:
test_result["passed"] = True
test_result["reason"] = "Graceful error handling with reasonable confidence"
elif not has_graceful_handling and result_state.final_confidence >= 0.3:
test_result["passed"] = True
test_result["reason"] = "Provided meaningful answer with acceptable confidence"
elif result_state.final_confidence > 0.0 and len(result_state.agent_results) > 0:
test_result["passed"] = True
test_result["reason"] = "System remained stable and attempted processing"
else:
test_result["reason"] = f"Insufficient error handling or system instability (confidence: {result_state.final_confidence:.2f})"
return test_result
def run_comprehensive_test(self) -> None:
"""Run comprehensive test and report results"""
logger.info("π Starting Production Fix Validation Tests")
logger.info("=" * 60)
start_time = time.time()
try:
results = self.test_error_handling_scenarios()
total_time = time.time() - start_time
# Print summary
summary = results["test_summary"]
logger.info("\n" + "=" * 60)
logger.info("π TEST SUMMARY")
logger.info("=" * 60)
logger.info(f"Total Tests: {summary['total_tests']}")
logger.info(f"β
Passed: {summary['passed']}")
logger.info(f"β Failed: {summary['failed']}")
logger.info(f"β οΈ Errors: {len(summary['errors'])}")
logger.info(f"π Success Rate: {summary['passed']/summary['total_tests']*100:.1f}%")
logger.info(f"β±οΈ Total Time: {total_time:.2f}s")
# Success threshold
success_rate = summary['passed'] / summary['total_tests']
if success_rate >= 0.8: # 80% success rate for error handling
logger.info("π PRODUCTION FIXES VALIDATION: PASSED")
logger.info("System demonstrates robust error handling and graceful degradation")
else:
logger.warning("β οΈ PRODUCTION FIXES VALIDATION: NEEDS IMPROVEMENT")
logger.warning(f"Success rate {success_rate*100:.1f}% below 80% threshold")
# Print any errors
if summary['errors']:
logger.error("\nπ₯ ERRORS ENCOUNTERED:")
for error in summary['errors']:
logger.error(f" - {error}")
except Exception as e:
logger.error(f"β Comprehensive test failed: {str(e)}")
raise
def main():
"""Main test execution"""
try:
tester = ProductionFixTester()
tester.run_comprehensive_test()
except Exception as e:
logger.error(f"Test execution failed: {e}")
exit(1)
if __name__ == "__main__":
main() |