include_domains: Optional[List[str]] = Field(
default=[],
description='A list of domains to restrict search results to.\n\n Use this parameter when:\n 1. The user explicitly requests information from specific websites (e.g., "Find climate data from nasa.gov")\n 2. The user mentions an organization or company without specifying the domain (e.g., "Find information about iPhones from Apple")\n\n In both cases,
you should determine the appropriate domains (e.g., ["nasa.gov"] or ["apple.com"]) and set this parameter.\n\n Results will ONLY come from the specified domains - no other sources will be included.\n Default is None (no domain restriction).\n '
)