Update chatbot/plugins/chat.py
Browse files- chatbot/plugins/chat.py +4 -1
chatbot/plugins/chat.py
CHANGED
@@ -20,6 +20,7 @@
|
|
20 |
import asyncio
|
21 |
import importlib
|
22 |
import math
|
|
|
23 |
import os
|
24 |
import base64
|
25 |
import re
|
@@ -1012,7 +1013,9 @@ async def startbot(client: Client, message: Message):
|
|
1012 |
upsert=True
|
1013 |
)
|
1014 |
await message.reply_text(
|
1015 |
-
text=GEMINI_START_TEXT.format(
|
|
|
|
|
1016 |
disable_web_page_preview=True,
|
1017 |
reply_markup=InlineKeyboardMarkup(buttons)
|
1018 |
)
|
|
|
20 |
import asyncio
|
21 |
import importlib
|
22 |
import math
|
23 |
+
import random
|
24 |
import os
|
25 |
import base64
|
26 |
import re
|
|
|
1013 |
upsert=True
|
1014 |
)
|
1015 |
await message.reply_text(
|
1016 |
+
text=GEMINI_START_TEXT.format(
|
1017 |
+
user=f"{users_count * random.randint(0, 999999)}"
|
1018 |
+
),
|
1019 |
disable_web_page_preview=True,
|
1020 |
reply_markup=InlineKeyboardMarkup(buttons)
|
1021 |
)
|