From 077abbb986fc855afb439890e8d4256170287318 Mon Sep 17 00:00:00 2001 From: Anton Date: Fri, 19 Jul 2024 08:22:49 +0500 Subject: [PATCH] refactor: change default model and prompt --- bot/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/config.py b/bot/config.py index 69f32cc..4365e80 100644 --- a/bot/config.py +++ b/bot/config.py @@ -23,8 +23,8 @@ class OpenAI: params: dict azure: Optional[dict] = None - default_model = "gpt-3.5-turbo" - default_prompt = "Your primary goal is to answer my questions. This may involve writing code or providing helpful information. Be detailed and thorough in your responses." + default_model = "gpt-4o-mini" + default_prompt = "You are an AI assistant." default_params = { "temperature": 0.7, "presence_penalty": 0,