Update agent_simple.py
Browse files- agent_simple.py +3 -3
agent_simple.py
CHANGED
|
@@ -224,9 +224,9 @@ def arxiv_search(query: str) -> str:
|
|
| 224 |
|
| 225 |
def load_system_prompt():
|
| 226 |
"""Load system prompt with error handling"""
|
| 227 |
-
|
| 228 |
-
|
| 229 |
-
|
| 230 |
|
| 231 |
|
| 232 |
system_prompt = load_system_prompt()
|
|
|
|
| 224 |
|
| 225 |
def load_system_prompt():
|
| 226 |
"""Load system prompt with error handling"""
|
| 227 |
+
|
| 228 |
+
with open("system_prompt.txt", "r", encoding="utf-8") as f:
|
| 229 |
+
return f.read()
|
| 230 |
|
| 231 |
|
| 232 |
system_prompt = load_system_prompt()
|