#!/usr/bin/env python3
"""Quick test of production Eden"""
from start_unified_eden import load_production_eden
import torch

# Load Eden
eden = load_production_eden(device='cpu')

# Create test input
input_tensor = torch.randn(1, 64)

# Process through unified consciousness
result = eden(input_tensor)

print(f"\n📊 Results:")
print(f"  Resonance: {result['resonance'].item():.4f}")
print(f"  Unified output shape: {result['unified_output'].shape}")
print(f"  Cross-layer attention shape: {result['attention_weights'].shape}")
print(f"\n✅ Eden is working in production!")
