agent-zero/prompts/agent.system.tool.search_engine.md
2026-05-09 17:36:08 +02:00

823 B

search_engine

find live news, prices, and other real-time web data arg: query (keyword-based text search query) returns urls, titles, and descriptions

query rules:

  • use keywords, names, exact phrases, model/version numbers, dates, and domains
  • do not write a natural-language question or sentence
  • omit filler words like "what", "who", "can you tell me", "find information about"
  • use 3-10 high-signal terms; add alternatives only when they improve recall
  • bad: "What is the latest LiteLLM release and what changed?"
  • good: "LiteLLM latest release notes changelog"

example:

{
  "thoughts": ["I need current information rather than relying on memory."],
  "headline": "Searching the web",
  "tool_name": "search_engine",
  "tool_args": {
    "query": "LiteLLM latest release notes changelog"
  }
}