Prasanthkumar commited on
Commit
e65aee5
·
verified ·
1 Parent(s): 0d39d2a

Update agent/agent.py

Browse files
Files changed (1) hide show
  1. 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("prompts/system_prompt.txt", "r", encoding="utf-8") as f:
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