From cb287b700c38229f9cb98133ff2ead176b0815c1 Mon Sep 17 00:00:00 2001 From: onebottlekick Date: Thu, 26 Sep 2024 10:38:04 +0900 Subject: [PATCH] =?UTF-8?q?add:=20[=ED=95=9C=EB=B3=91=EC=B0=AC]=20added=20?= =?UTF-8?q?.env=20file=20to=20manage=20environment=20variables?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- run.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run.py b/run.py index 34c5872..a2361a6 100644 --- a/run.py +++ b/run.py @@ -20,6 +20,8 @@ from camel.typing import ModelType root = os.path.dirname(__file__) sys.path.append(root) +from dotenv import load_dotenv +load_dotenv() from chatdev.chat_chain import ChatChain