Spaces:
Sleeping
Sleeping
File size: 915 Bytes
6d6b8af |
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 |
from codette_quantum_simplified 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()
|