[Enhancement] 환경 변수 추가 및 SSO 로그인 리디렉션 URL 수집을 위한 확장된 프롬프트 구현

This commit is contained in:
imnyang 2025-06-11 23:16:19 +09:00
commit a52bf2907c
5 changed files with 163 additions and 4 deletions

View file

@ -204,7 +204,7 @@ async def scan_one_url(url: str, skip_html_check: bool = False):
llm=CreateChatGoogleGenerativeAI(os.getenv("GOOGLE_MODEL") or "fallback"),
planner_llm=CreateChatGoogleGenerativeAI(os.getenv("GOOGLE_PLANNER_MODEL") or "fallback"),
controller=controller,
extend_planner_system_message=extend_planner_system_message,
extend_planner_system_message=extend_planner_system_message(),
)
response = await agent.run()
final_result = response.final_result()