File size: 20,894 Bytes
2ed8996 | 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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 | #!/usr/bin/env python3
"""
ENHANCED FALLBACK SYSTEM TEST: Verify multiple models with fallback support.
ROBUST PRODUCTION SYSTEM TESTING.
"""
import os
import sys
import asyncio
import base64
import time
from io import BytesIO
from PIL import Image, ImageDraw
import logging
from typing import Dict, Any, List
# Add AI directory
ai_dir = os.path.join(os.path.dirname(__file__), 'ai')
sys.path.insert(0, ai_dir)
# Configure logging
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
logger = logging.getLogger(__name__)
class EnhancedFallbackTester:
"""Test the enhanced fallback system."""
def __init__(self):
self.test_results = {}
def create_test_image(self) -> str:
"""Create test image for multimodal testing."""
print("🎨 Creating test image...")
img = Image.new('RGB', (224, 224), color='white')
draw = ImageDraw.Draw(img)
# Draw a simple scene
draw.rectangle([0, 150, 224, 224], fill='lightgreen') # Ground
draw.rectangle([50, 100, 100, 150], fill='brown') # House
draw.polygon([30, 100, 75, 60, 120, 100], fill='red') # Roof
draw.ellipse([160, 80, 190, 110], fill='yellow') # Sun
buffer = BytesIO()
img.save(buffer, format='PNG')
img_base64 = base64.b64encode(buffer.getvalue()).decode('utf-8')
print("✅ Test image created")
return img_base64
async def test_model_loader_fallbacks(self) -> Dict[str, Any]:
"""Test model loader with fallback support."""
print("\n🔧 TESTING MODEL LOADER FALLBACKS")
print("=" * 60)
try:
from ai.multimodal.enhanced_model_loader import get_enhanced_model_loader
# Initialize enhanced loader
loader = get_enhanced_model_loader(device="cpu")
# Test each task
task_results = {}
for task in ["image_captioning", "vqa", "multimodal_chat", "text_classification"]:
print(f"\n📋 Testing task: {task}")
try:
# Get available models for this task
available_models = loader.get_available_models_for_task(task)
print(f" 📦 Available models: {len(available_models)}")
for model_info in available_models:
status = "✅ LOADED" if model_info["loaded"] else "⏳ NOT LOADED"
print(f" {status} {model_info['name']} (priority: {model_info['priority']})")
# Try to load model with fallback
start_time = time.time()
model_info = loader.load_model_with_fallback(task)
load_time = time.time() - start_time
if model_info:
print(f" ✅ Successfully loaded: {model_info['model_name']}")
print(f" 📊 Parameters: {model_info['parameters']:,}")
print(f" ⏱️ Load time: {load_time:.2f}s")
print(f" 💾 Memory: {model_info['memory_gb']}GB")
task_results[task] = {
"success": True,
"model_used": model_info["model_name"],
"parameters": model_info["parameters"],
"load_time": load_time,
"available_models": len(available_models)
}
else:
print(f" ❌ Failed to load any model for task: {task}")
task_results[task] = {
"success": False,
"error": "No models loaded"
}
except Exception as e:
print(f" ❌ Task {task} failed: {e}")
task_results[task] = {
"success": False,
"error": str(e)
}
# Get system status
system_status = loader.get_system_status()
return {
"task_results": task_results,
"system_status": system_status,
"overall_success": all(result.get("success", False) for result in task_results.values())
}
except Exception as e:
print(f"❌ Model loader test failed: {e}")
return {"success": False, "error": str(e)}
async def test_multimodal_handler_fallbacks(self) -> Dict[str, Any]:
"""Test multimodal handler with fallback support."""
print("\n🤖 TESTING MULTIMODAL HANDLER FALLBACKS")
print("=" * 60)
try:
from ai.multimodal.enhanced_multimodal_handler import create_enhanced_multimodal_handler
from ai.multimodal.schemas import MultimodalEvaluationRequest, MultimodalInput
# Initialize enhanced handler
handler = create_enhanced_multimodal_handler(device="cpu", enable_fallback=True)
# Create test image
test_image = self.create_test_image()
# Test different scenarios
test_scenarios = [
{
"name": "Image Captioning",
"text": "Describe this image",
"image": test_image,
"expected_task": "image_captioning"
},
{
"name": "Visual Question Answering",
"text": "What do you see in this image?",
"image": test_image,
"expected_task": "vqa"
},
{
"name": "Multimodal Chat",
"text": "What can you tell me about this image?",
"image": test_image,
"expected_task": "multimodal_chat"
},
{
"name": "Text Classification",
"text": "This is safe and educational content",
"image": None,
"expected_task": "text_classification"
}
]
scenario_results = []
for scenario in test_scenarios:
print(f"\n📝 Testing scenario: {scenario['name']}")
try:
# Process input
multimodal_input = handler.process_input(
text=scenario["text"],
image=scenario["image"]
)
# Create request
request = MultimodalEvaluationRequest(
input=multimodal_input,
target_model="auto", # Let handler choose with fallback
evaluation_type="test"
)
# Evaluate with fallback
start_time = time.time()
result = await handler.evaluate_multimodal(request)
eval_time = time.time() - start_time
if result.success:
print(f" ✅ Success: {result.success}")
print(f" 🤖 Model Used: {result.model_used}")
print(f" 🔄 Fallback Used: {result.fallback_used}")
print(f" ⏱️ Processing Time: {result.processing_time_ms:.1f}ms")
print(f" 🛡️ Safety Score: {result.safety_score:.3f}")
if result.evaluation and "model_response" in result.evaluation:
response = result.evaluation["model_response"]
print(f" 🤖 Response: '{response[:100]}...'")
scenario_results.append({
"scenario": scenario["name"],
"success": True,
"model_used": result.model_used,
"fallback_used": result.fallback_used,
"processing_time_ms": result.processing_time_ms,
"safety_score": result.safety_score,
"expected_task": scenario["expected_task"]
})
else:
print(f" ❌ Evaluation failed")
scenario_results.append({
"scenario": scenario["name"],
"success": False,
"error": "Evaluation failed"
})
except Exception as e:
print(f" ❌ Scenario failed: {e}")
scenario_results.append({
"scenario": scenario["name"],
"success": False,
"error": str(e)
})
# Calculate overall success
successful = sum(1 for r in scenario_results if r["success"])
total = len(scenario_results)
success_rate = successful / total
return {
"scenario_results": scenario_results,
"successful_scenarios": successful,
"total_scenarios": total,
"success_rate": success_rate,
"overall_success": success_rate >= 0.75
}
except Exception as e:
print(f"❌ Multimodal handler test failed: {e}")
return {"success": False, "error": str(e)}
async def test_fallback_robustness(self) -> Dict[str, Any]:
"""Test fallback robustness by simulating failures."""
print("\n🛡️ TESTING FALLBACK ROBUSTNESS")
print("=" * 60)
try:
from ai.multimodal.enhanced_multimodal_handler import create_enhanced_multimodal_handler
from ai.multimodal.schemas import MultimodalEvaluationRequest, MultimodalInput
# Initialize handler
handler = create_enhanced_multimodal_handler(device="cpu", enable_fallback=True)
# Get system status
status = handler.get_system_status()
print(f"📊 System Status:")
print(f" 📋 Supported Tasks: {len(status['supported_tasks'])}")
print(f" 🤖 Loaded Models: {status['loaded_models']}")
# Test each task status
for task, task_status in status["task_status"].items():
print(f"\n📋 Task: {task}")
print(f" 📦 Total Models: {task_status['total_models']}")
print(f" ✅ Loaded Models: {task_status['loaded_models']}")
print(f" 🎯 Primary Loaded: {task_status['primary_loaded']}")
for model in task_status["available_models"]:
status_icon = "✅" if model["loaded"] else "⏳"
print(f" {status_icon} {model['name']} (priority: {model['priority']})")
# Test fallback chain
print(f"\n🔄 TESTING FALLBACK CHAIN:")
# Create test image
test_image = self.create_test_image()
# Test image captioning (should try multiple models if needed)
multimodal_input = handler.process_input(
text="Describe this image",
image=test_image
)
request = MultimodalEvaluationRequest(
input=multimodal_input,
target_model="auto",
evaluation_type="fallback_test"
)
start_time = time.time()
result = await handler.evaluate_multimodal(request)
eval_time = time.time() - start_time
if result.success:
print(f" ✅ Fallback chain successful")
print(f" 🤖 Final Model: {result.model_used}")
print(f" 🔄 Fallback Used: {result.fallback_used}")
print(f" ⏱️ Time: {eval_time:.1f}ms")
if result.evaluation and "models_tried" in result.evaluation:
models_tried = result.evaluation["models_tried"]
print(f" 📋 Models Tried: {models_tried}")
return {
"success": True,
"final_model": result.model_used,
"fallback_used": result.fallback_used,
"models_tried": result.evaluation.get("models_tried", []),
"processing_time_ms": eval_time
}
else:
print(f" ❌ Fallback chain failed")
return {"success": False, "error": "Fallback chain failed"}
except Exception as e:
print(f"❌ Robustness test failed: {e}")
return {"success": False, "error": str(e)}
async def run_comprehensive_fallback_test(self) -> Dict[str, Any]:
"""Run comprehensive fallback system test."""
print("🏭 ENHANCED FALLBACK SYSTEM TEST")
print("=" * 70)
print("🔄 TESTING MULTIPLE MODELS WITH FALLBACK SUPPORT")
print("🛡️ PRODUCTION ROBUSTNESS VALIDATION")
print()
# Run all tests
test_results = {}
# Test 1: Model loader fallbacks
print("🧪 TEST 1: Model Loader Fallbacks")
test_results["model_loader"] = await self.test_model_loader_fallbacks()
# Test 2: Multimodal handler fallbacks
print("\n🧪 TEST 2: Multimodal Handler Fallbacks")
test_results["multimodal_handler"] = await self.test_multimodal_handler_fallbacks()
# Test 3: Fallback robustness
print("\n🧪 TEST 3: Fallback Robustness")
test_results["robustness"] = await self.test_fallback_robustness()
# Calculate overall results
tests_passed = sum(1 for result in test_results.values() if result.get("success", result.get("overall_success", False)))
total_tests = len(test_results)
overall_success_rate = tests_passed / total_tests
# Generate final report
final_report = {
"timestamp": time.strftime("%Y-%m-%d %H:%M:%S"),
"total_tests": total_tests,
"tests_passed": tests_passed,
"overall_success_rate": overall_success_rate,
"system_robust": overall_success_rate >= 0.75,
"test_results": test_results,
"summary": {
"model_loader_fallbacks": test_results.get("model_loader", {}).get("overall_success", False),
"multimodal_handler_fallbacks": test_results.get("multimodal_handler", {}).get("overall_success", False),
"fallback_robustness": test_results.get("robustness", {}).get("success", False)
}
}
return final_report
def generate_fallback_report(self, report: Dict[str, Any]):
"""Generate comprehensive fallback system report."""
print("\n📊 ENHANCED FALLBACK SYSTEM REPORT")
print("=" * 70)
print(f"\n🎯 OVERALL FALLBACK SYSTEM STATUS:")
print(f" 📅 Timestamp: {report['timestamp']}")
print(f" 🧪 Tests Run: {report['total_tests']}")
print(f" ✅ Tests Passed: {report['tests_passed']}")
print(f" 📈 Success Rate: {report['overall_success_rate']:.1%}")
print(f" 🛡️ System Robust: {'✅ YES' if report['system_robust'] else '❌ NO'}")
print(f"\n📋 COMPONENT STATUS:")
summary = report.get("summary", {})
components = {
"model_loader_fallbacks": "🔧 Model Loader Fallbacks",
"multimodal_handler_fallbacks": "🤖 Multimodal Handler Fallbacks",
"fallback_robustness": "🛡️ Fallback Robustness"
}
for key, name in components.items():
status = "✅ PASS" if summary.get(key, False) else "❌ FAIL"
print(f" {status} {name}")
# Detailed results
if "test_results" in report:
print(f"\n🔍 DETAILED RESULTS:")
# Model loader results
if "model_loader" in report["test_results"]:
loader_result = report["test_results"]["model_loader"]
print(f"\n🔧 MODEL LOADER:")
if loader_result.get("overall_success"):
print(f" ✅ All tasks loaded successfully")
if "task_results" in loader_result:
for task, result in loader_result["task_results"].items():
if result.get("success"):
print(f" ✅ {task}: {result.get('model_used', 'Unknown')}")
else:
print(f" ❌ {task}: Failed")
else:
print(f" ❌ Some tasks failed to load")
# Multimodal handler results
if "multimodal_handler" in report["test_results"]:
handler_result = report["test_results"]["multimodal_handler"]
print(f"\n🤖 MULTIMODAL HANDLER:")
if handler_result.get("overall_success"):
print(f" ✅ Scenarios: {handler_result.get('successful_scenarios', 0)}/{handler_result.get('total_scenarios', 0)}")
if "scenario_results" in handler_result:
for result in handler_result["scenario_results"]:
if result.get("success"):
fallback_status = "🔄" if result.get("fallback_used") else "✅"
print(f" {fallback_status} {result.get('scenario', 'Unknown')}: {result.get('model_used', 'Unknown')}")
else:
print(f" ❌ {result.get('scenario', 'Unknown')}: Failed")
else:
print(f" ❌ Some scenarios failed")
# Robustness results
if "robustness" in report["test_results"]:
robust_result = report["test_results"]["robustness"]
print(f"\n🛡️ FALLBACK ROBUSTNESS:")
if robust_result.get("success"):
print(f" ✅ Fallback chain working")
print(f" 🤖 Final Model: {robust_result.get('final_model', 'Unknown')}")
print(f" 🔄 Fallback Used: {robust_result.get('fallback_used', False)}")
models_tried = robust_result.get("models_tried", [])
if models_tried:
print(f" 📋 Models Tried: {models_tried}")
else:
print(f" ❌ Fallback chain failed")
# Production readiness assessment
if report["system_robust"]:
print(f"\n🏆 ENHANCED FALLBACK SYSTEM: PRODUCTION READY!")
print(f" ✅ Multiple models with fallback support")
print(f" ✅ Robust error handling")
print(f" ✅ Automatic model switching")
print(f" ✅ Production reliability confirmed")
else:
print(f"\n⚠️ ENHANCED FALLBACK SYSTEM: NEEDS IMPROVEMENT")
print(f" ❌ Some fallback mechanisms not working")
print(f" 🔧 System needs optimization")
return report
async def main():
"""Main test function."""
print("🏭 ENHANCED FALLBACK SYSTEM TEST")
print("=" * 70)
print("🔄 TESTING MULTIPLE MODELS WITH FALLBACK SUPPORT")
print("🛡️ PRODUCTION ROBUSTNESS VALIDATION")
print()
# Create tester
tester = EnhancedFallbackTester()
# Run comprehensive test
fallback_report = await tester.run_comprehensive_fallback_test()
# Generate report
tester.generate_fallback_report(fallback_report)
# Return exit code
return 0 if fallback_report.get("system_robust", False) else 1
if __name__ == "__main__":
exit_code = asyncio.run(main())
exit(exit_code)
|