From 546d9c061ab61851618c79c015df4df3a6447834 Mon Sep 17 00:00:00 2001 From: imnyang Date: Sun, 15 Jun 2025 02:58:57 +0900 Subject: [PATCH] =?UTF-8?q?[Enhancement]=20LMNR=20=EC=B4=88=EA=B8=B0?= =?UTF-8?q?=ED=99=94=20=EC=8B=9C=20BASEURL=20=ED=99=98=EA=B2=BD=EB=B3=80?= =?UTF-8?q?=EC=88=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index eab5cb0..dd02b74 100644 --- a/main.py +++ b/main.py @@ -40,10 +40,10 @@ if os.getenv("GOOGLE_PLANNER_MODEL") is None: backend_url = os.getenv("BACKEND_URL", "http://localhost:11081") -if os.getenv("LMNR_PROJECT_API_KEY"): +if os.getenv("LMNR_PROJECT_API_KEY") and os.getenv("LMNR_BASEURL"): from lmnr import Laminar # this line auto-instruments Browser Use and any browser you use (local or remote) - Laminar.initialize(project_api_key=os.getenv("LMNR_PROJECT_API_KEY")) # you can also pass project api key here + Laminar.initialize(project_api_key=os.getenv("LMNR_PROJECT_API_KEY"), base_url=os.getenv("LMNR_BASEURL")) # you can also pass project api key here print("🔧 환경 설정:") try: