bwilkie commited on
Commit
3afa28b
·
verified ·
1 Parent(s): 377bc4d

Update agent_simple.py

Browse files
Files changed (1) hide show
  1. 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
- try:
228
- with open("system_prompt.txt", "r", encoding="utf-8") as f:
229
- return f.read()
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()