Gem_Protype / brain.py
renpley2's picture
Create brain.py
ea928b8 verified
Raw
History Blame Contribute Delete
255 Bytes
from gem_core import process_message
def think(user_input):
try:
جواب = process_message(user_input)
return f"🔹 خروجی جیم: {جواب}"
except Exception as e:
return f"خطا داخل مغز جیم: {str(e)}"