Connor Adams commited on
Commit
3c26361
·
1 Parent(s): 08f321d

Update prompt

Browse files
Files changed (1) hide show
  1. agent.py +1 -1
agent.py CHANGED
@@ -10,7 +10,7 @@ class BasicAgent:
10
  self.agent = Agent(
11
  "openai:o3-mini",
12
  tools=[safe_duckduckgo_search_tool(), get_youtube_transcript],
13
- system_prompt="Search DuckDuckGo for the given query and return the results.",
14
  )
15
 
16
  def __call__(self, question: str) -> str:
 
10
  self.agent = Agent(
11
  "openai:o3-mini",
12
  tools=[safe_duckduckgo_search_tool(), get_youtube_transcript],
13
+ system_prompt="You are a helpful assistant that can answer questions about the world.",
14
  )
15
 
16
  def __call__(self, question: str) -> str: