diff options
| author | huker667 <huker@tuta.io> | 2026-08-04 22:18:25 +0300 |
|---|---|---|
| committer | huker667 <huker@tuta.io> | 2026-08-04 22:18:25 +0300 |
| commit | 0b09d32d47734cabf357601dd76cfbd30402063d (patch) | |
| tree | a5ce0f22ae663305f61c0753d57fe2bb00cca9e6 /main.py | |
| parent | 3e6b137bf360c5d8856de656d26f1f26d0c78190 (diff) | |
| download | uzbekgpt-0b09d32d47734cabf357601dd76cfbd30402063d.tar.gz uzbekgpt-0b09d32d47734cabf357601dd76cfbd30402063d.tar.bz2 uzbekgpt-0b09d32d47734cabf357601dd76cfbd30402063d.zip | |
фикс фикс прошлого коммита
Diffstat (limited to 'main.py')
| -rw-r--r-- | main.py | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -113,6 +113,22 @@ async def guest_middleware(handler, event, data): elif alo_command[user_id]["action"] == "p_prompt": alo_command[user_id]["action"] = None alo_command[user_id]["prompt"] = message.text + + if len(config["prompts"]) >= MAX_PROMPTS: + return await bot.edit_message_text( + text=f"невозможно создать новый промпт так как ты превысил лимит промптов da.", + chat_id=alo_command[user_id]["chat_id"], + message_id=alo_command[user_id]["message_id"], + reply_markup=InlineKeyboardMarkup( + inline_keyboard=[ + [ + InlineKeyboardButton( + text=f"ок", callback_data=f"user_prompts%{user_id}" + ), + ], + ] + ) + ) while 1: alo_command[user_id]["id"] = ''.join(choices(string.ascii_letters, k=10)) |