fix: get_prompt 함수에서 type 비교 시 대소문자 구분 없애기

This commit is contained in:
암냥 2025-06-23 20:44:54 +09:00
commit b0a4727e13

View file

@ -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: