Update agent/agent.py
Browse files- agent/agent.py +1 -1
agent/agent.py
CHANGED
|
@@ -27,7 +27,7 @@ from tools.web_search import arxiv_search, similar_question_search, wiki_search,
|
|
| 27 |
load_dotenv() # load environment variables
|
| 28 |
|
| 29 |
# load the system prompt from the file
|
| 30 |
-
with open("
|
| 31 |
system_prompt = f.read()
|
| 32 |
print(system_prompt)
|
| 33 |
|
|
|
|
| 27 |
load_dotenv() # load environment variables
|
| 28 |
|
| 29 |
# load the system prompt from the file
|
| 30 |
+
with open("system_prompt.txt", "r", encoding="utf-8") as f:
|
| 31 |
system_prompt = f.read()
|
| 32 |
print(system_prompt)
|
| 33 |
|