VibeAround

Host Web Search

Configure VibeAround's host-side web search fallback for agents and model providers that request provider-side web_search support.

Documentation notice: these docs are currently generated with Codex and are being actively reviewed, expanded, and refined.

Models without native web search can still search: enable the host-side search tool (search_tool in settings) and, optionally, api_bridge.replace_provider_web_search to route even native-search-capable models through your configured search sources. One search config then serves every agent and profile.

Configuration

In ~/.vibearound/settings.json:

{
  // --- Host-side web search ---
  "search_tool": {
    "enabled": false,
    "max_results": 5,
    "sources": {
      "tavily": { "enabled": true, "api_key": "…" },   // also: brave, exa, grok
      "brave":  { "enabled": false, "api_key_env": "BRAVE_KEY", "base_url": null }
    }
  },
}

Sources: Tavily, Brave, Exa, and Grok — enable any subset; keys can come from api_key or an env var via api_key_env.


Last verified: v0.7.11

On this page