chore: 윈도우 인코딩 이슈 해결

This commit is contained in:
암냥 2025-06-25 13:43:15 +09:00
commit 5c816baf67
4 changed files with 51 additions and 9 deletions

View file

@ -13,13 +13,6 @@ def get_prompt(type:str) -> str:
from lib.llm.prompt.auth_list import extract_oauth_list_prompt
return extract_oauth_list_prompt
elif type.lower() == "google":
from lib.llm.prompt.Google import extend_planner_system_message
return extend_planner_system_message
elif type.lower() == "meta" and type.lower() == "facebook":
from lib.llm.prompt.Meta import extend_planner_system_message
return extend_planner_system_message
else:
from lib.llm.prompt.fallback import extend_planner_system_message
return extend_planner_system_message