Update langgraph_agent.py
Browse files- langgraph_agent.py +1 -1
langgraph_agent.py
CHANGED
@@ -76,7 +76,7 @@ tools = [
|
|
76 |
]
|
77 |
|
78 |
|
79 |
-
with open("
|
80 |
system_prompt = f.read()
|
81 |
sys_msg = SystemMessage(content=system_prompt)
|
82 |
|
|
|
76 |
]
|
77 |
|
78 |
|
79 |
+
with open("prompt.txt", "r", encoding="utf-8") as f:
|
80 |
system_prompt = f.read()
|
81 |
sys_msg = SystemMessage(content=system_prompt)
|
82 |
|