From b880613aee0020401f7c5099369eafa0256f5495 Mon Sep 17 00:00:00 2001 From: jekalmin Date: Wed, 3 Jan 2024 00:56:38 +0900 Subject: [PATCH] =?UTF-8?q?change=20default=20model=20"gpt-3.5-turbo"=20?= =?UTF-8?q?=E2=86=92=20"gpt-3.5-turbo-1106"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- custom_components/extended_openai_conversation/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/extended_openai_conversation/const.py b/custom_components/extended_openai_conversation/const.py index 2a3fc10..e607769 100644 --- a/custom_components/extended_openai_conversation/const.py +++ b/custom_components/extended_openai_conversation/const.py @@ -30,7 +30,7 @@ Do not restate or appreciate what user says, rather make a quick inquiry. """ CONF_CHAT_MODEL = "chat_model" -DEFAULT_CHAT_MODEL = "gpt-3.5-turbo" +DEFAULT_CHAT_MODEL = "gpt-3.5-turbo-1106" CONF_MAX_TOKENS = "max_tokens" DEFAULT_MAX_TOKENS = 150 CONF_TOP_P = "top_p"