Update chatbot/plugins/chat.py
Browse files- chatbot/plugins/chat.py +1 -0
chatbot/plugins/chat.py
CHANGED
@@ -992,6 +992,7 @@ async def chatbot_talk(client: Client, message: Message):
|
|
992 |
|
993 |
edit_image_now = re.sub(r"--edit-images", "", caption).strip()
|
994 |
if edit_image_now:
|
|
|
995 |
try:
|
996 |
backup_chat = await db._get_chatbot_chat_from_db(message.from_user.id)
|
997 |
backup_chat.append({"role": "user", "parts": [{"text": caption}]})
|
|
|
992 |
|
993 |
edit_image_now = re.sub(r"--edit-images", "", caption).strip()
|
994 |
if edit_image_now:
|
995 |
+
LOGS.info(f"This Enabled cleared: {edit_image_now}")
|
996 |
try:
|
997 |
backup_chat = await db._get_chatbot_chat_from_db(message.from_user.id)
|
998 |
backup_chat.append({"role": "user", "parts": [{"text": caption}]})
|