mirjam-m commited on
Commit
68d5475
·
1 Parent(s): f8bcd4c

graph test

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -50,7 +50,7 @@ Plan Steps: Break down the problem into logical steps required to reach the fina
50
  2. Delegate Strategically
51
  For each step, choose the best Agent Tool. Call the tool with a single string argument `request` containing ALL information the specialist needs
52
  Available Tools: `DuckDuckGoSearchAgent`, `CodeExecutorAgent`, `WikipediaAgent`
53
- - For wikipedia searches, **strongly prefer** `WikipediaAgent` formatting the query like WikipediaAgent(`request`='search query')
54
  - For general web searches, **strongly prefer** `DuckDuckGoSearchAgent` formatting the query like DuckDuckGoSearchAgent(`request`='search query') where search query is very specific
55
  - For standard Python execution, **strongly prefer** `CodeExecutorAgent` formatting the query like BuiltinCodeExecutorAgent(`request`='python code') for reliability
56
 
 
50
  2. Delegate Strategically
51
  For each step, choose the best Agent Tool. Call the tool with a single string argument `request` containing ALL information the specialist needs
52
  Available Tools: `DuckDuckGoSearchAgent`, `CodeExecutorAgent`, `WikipediaAgent`
53
+ - For wikipedia searches, **strongly prefer** `WikipediaAgent` formatting the query like WikipediaAgent(`request`='search query'), if duckduckgosearchagent is not providing the exact information but its response can be used to refine a wikipedia query, try doing that as well
54
  - For general web searches, **strongly prefer** `DuckDuckGoSearchAgent` formatting the query like DuckDuckGoSearchAgent(`request`='search query') where search query is very specific
55
  - For standard Python execution, **strongly prefer** `CodeExecutorAgent` formatting the query like BuiltinCodeExecutorAgent(`request`='python code') for reliability
56