| 1 | ### search_engine |
| 2 | find live news, prices, and other real-time web data |
| 3 | arg: `query` (keyword-based text search query) |
| 4 | returns urls, titles, and descriptions |
| 5 | |
| 6 | query rules: |
| 7 | - use keywords, names, exact phrases, model/version numbers, dates, and domains |
| 8 | - do not write a natural-language question or sentence |
| 9 | - omit filler words like "what", "who", "can you tell me", "find information about" |
| 10 | - use 3-10 high-signal terms; add alternatives only when they improve recall |
| 11 | - bad: "What is the latest LiteLLM release and what changed?" |
| 12 | - good: "LiteLLM latest release notes changelog" |
| 13 | |
| 14 | example: |
| 15 | ~~~json |
| 16 | { |
| 17 | "thoughts": ["I need current information rather than relying on memory."], |
| 18 | "headline": "Searching the web", |
| 19 | "tool_name": "search_engine", |
| 20 | "tool_args": { |
| 21 | "query": "LiteLLM latest release notes changelog" |
| 22 | } |
| 23 | } |
| 24 | ~~~ |