Spaces:
Runtime error
Runtime error
| """Quick test of the demo.""" | |
| # Test imports | |
| try: | |
| from server.app import create_demo | |
| print("β Demo imports successful") | |
| # Create demo | |
| demo = create_demo() | |
| print("β Demo created successfully") | |
| print("\nπ Demo is ready!") | |
| print("Run: python server/app.py") | |
| except Exception as e: | |
| print(f"β Error: {e}") | |
| import traceback | |
| traceback.print_exc() | |