mirror of
https://github.com/blackboxprogramming/lucidia.git
synced 2026-03-17 09:37:56 -05:00
13 lines
247 B
Python
13 lines
247 B
Python
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)")
|