__init__.py
1 """Web search tools for Solace Agent Mesh. 2 3 This module provides Google Search integration. For other search providers 4 (Exa, Brave, Tavily), please use the corresponding plugins from 5 solace-agent-mesh-plugins repository. 6 """ 7 8 from .models import SearchSource, SearchResult, ImageResult 9 from .base import WebSearchTool 10 from .google_search import GoogleSearchTool 11 12 __all__ = [ 13 "SearchSource", 14 "SearchResult", 15 "ImageResult", 16 "WebSearchTool", 17 "GoogleSearchTool", 18 ]