## Context
Question: how to pass include_domains and other parameters (search_depth, include_answer, include_images, max_results) using the Python SDK examples.

## Verified resolution
Contributor assafelovic: pass them directly as keyword arguments to tavily.search(), e.g. tavily.search(query=..., search_depth='basic', include_answer=False, include_images=True, max_results=5); include_domains/exclude_domains default to empty lists and take lists of domains like ['example.com'], not comma-separated strings.