diff --git a/py/__pycache__/ai.cpython-312.pyc b/py/__pycache__/ai.cpython-312.pyc
index ff29eb9..a1c10a8 100644
Binary files a/py/__pycache__/ai.cpython-312.pyc and b/py/__pycache__/ai.cpython-312.pyc differ
diff --git a/py/ai.py b/py/ai.py
index ae5d692..c51f2d2 100644
--- a/py/ai.py
+++ b/py/ai.py
@@ -9,9 +9,12 @@ class AI:
             model=model,
             messages=messages,
             stream=True,
-            options={"temperature": 0.8},
+            options={"temperature": 0.5},
         )
 
+        for i in messages:
+            print(i)
+
         return_class.ai_response[access_token] = ""
 
         for chunk in stream: