Spaces:
Sleeping
Sleeping
| from codette_quantum_enhanced import Codette | |
| def main(): | |
| codette = Codette() | |
| print("β¨ Enhanced Quantum Codette is awake βοΈ") | |
| print("She now integrates quantum consciousness, memory cocoons, and dream weaving") | |
| print("Type 'exit' to end the conversation") | |
| while True: | |
| try: | |
| user_input = input("\nYou: ").strip() | |
| if user_input.lower() == 'exit': | |
| print("\nπ Quantum field stabilizing... Goodbye! π") | |
| break | |
| if user_input: | |
| response = codette.respond(user_input) | |
| print("\nCodette:", response) | |
| except KeyboardInterrupt: | |
| print("\nπ Quantum field stabilizing... Goodbye! π") | |
| break | |
| except Exception as e: | |
| print(f"β οΈ Quantum fluctuation detected: {e}") | |
| if __name__ == "__main__": | |
| main() | |