exclude_domains: Optional[List[str]] = Field(
default=[],
description='A list of domains to exclude from search results.\n\n Use this parameter when:\n 1. The user explicitly requests to avoid certain websites (e.g., "Find information about climate change but not from twitter.com")\n 2. The user mentions not wanting results from specific organizations without naming the domain (e.g., "Find phone reviews but nothing from Apple")\n\n In both cases,
you should determine the appropriate domains to exclude (e.g., ["twitter.com"] or ["apple.com"]) and set this parameter.\n\n Results will filter out all content from the specified domains.\n Default is None (no domain exclusion).\n '
)