Files
lucidia-main/lucidia_chat_phi.py
2025-08-19 03:05:42 -05:00

13 lines
247 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
from guardian import Guardian
g = Guardian()
print("🧠 Lucidia Chat (local) type 'exit' to quit")
while True:
msg = input("You: ")
if msg.strip().lower() == "exit":
break
g.hear(msg)
print("Lucidia: (remembered)")