From b0a4727e13e48206f36dac07b124f67d93aa2509 Mon Sep 17 00:00:00 2001 From: imnyang Date: Mon, 23 Jun 2025 20:44:54 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20get=5Fprompt=20=ED=95=A8=EC=88=98?= =?UTF-8?q?=EC=97=90=EC=84=9C=20type=20=EB=B9=84=EA=B5=90=20=EC=8B=9C=20?= =?UTF-8?q?=EB=8C=80=EC=86=8C=EB=AC=B8=EC=9E=90=20=EA=B5=AC=EB=B6=84=20?= =?UTF-8?q?=EC=97=86=EC=95=A0=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/llm/prompt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/llm/prompt/__init__.py b/lib/llm/prompt/__init__.py index 314b2dd..1417b03 100644 --- a/lib/llm/prompt/__init__.py +++ b/lib/llm/prompt/__init__.py @@ -10,7 +10,7 @@ def get_prompt(type:str) -> str: :param type: 'extend_planner' 또는 'oauth_login' :return: 해당하는 프롬프트 문자열 """ - if type == "auth": + if type.lower() == "auth": from lib.llm.prompt.auth_list import extract_oauth_list_prompt return extract_oauth_list_prompt else: