randydev commited on
Commit
fcc49bf
·
verified ·
1 Parent(s): 43cd5fe

Update chatbot/plugins/chat.py

Browse files
Files changed (1) hide show
  1. chatbot/plugins/chat.py +3 -2
chatbot/plugins/chat.py CHANGED
@@ -75,7 +75,8 @@ async def userstatus(client: Client, message: Message):
75
  name=message.from_user.first_name,
76
  check_status="Unlimited" if is_check_plan else "Stopped",
77
  info="You need email business: [register](https://google.com)\nRemember: **can't ownership**"
78
- )
 
79
  )
80
  return await message.reply_text(
81
  FREE_GEMINI_TEXT.format(
@@ -332,7 +333,7 @@ async def chatbot_talk(client: Client, message: Message):
332
  )
333
  os.remove("chat.txt")
334
  else:
335
- await message.reply_text(output)
336
  backup_chat.append({"role": "model", "parts": [{"text": output}]})
337
  await db._update_chatbot_chat_in_db(message.from_user.id, backup_chat)
338
  await client.send_chat_action(message.chat.id, enums.ChatAction.CANCEL)
 
75
  name=message.from_user.first_name,
76
  check_status="Unlimited" if is_check_plan else "Stopped",
77
  info="You need email business: [register](https://google.com)\nRemember: **can't ownership**"
78
+ ),
79
+ disable_web_page_preview=True
80
  )
81
  return await message.reply_text(
82
  FREE_GEMINI_TEXT.format(
 
333
  )
334
  os.remove("chat.txt")
335
  else:
336
+ await message.reply_text(output, disable_web_page_preview=True)
337
  backup_chat.append({"role": "model", "parts": [{"text": output}]})
338
  await db._update_chatbot_chat_in_db(message.from_user.id, backup_chat)
339
  await client.send_chat_action(message.chat.id, enums.ChatAction.CANCEL)