From aa0be5d9055711a65f31638c04421f514d5a67dd Mon Sep 17 00:00:00 2001 From: Polish Hammer Date: Thu, 30 Oct 2025 16:59:03 +0100 Subject: [PATCH] Tag: 1.8 --- bot.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bot.py b/bot.py index 7186650..1789781 100644 --- a/bot.py +++ b/bot.py @@ -929,17 +929,17 @@ async def handle_response( "Rozmiar zapytania przed dodaniem historii %s", chat_gpt_config_request_size ) if request_type == "MUSIC": - algorithm = "gpt-3.5-turbo-0125" + algorithm = "gpt-4o" table = message_table_muzyka token_amount = 10700 elif request_type == "RANDOM": - algorithm = "gpt-3.5-turbo-0125" + algorithm = "gpt-4o" table = MESSAGE_TABLE token_amount = 10700 else: table = MESSAGE_TABLE - algorithm = "gpt-4" - token_amount = 7000 + algorithm = "gpt-4o" + token_amount = 10700 prompt_gpt_request_size = num_tokens_from_string( {"role": "user", "content": final_prompt}, "gpt-4"