WebSearchConfig.anthropic constructor
WebSearchConfig.anthropic({})
Create an Anthropic-optimized configuration
Implementation
factory WebSearchConfig.anthropic({
int maxUses = 5,
List<String>? allowedDomains,
List<String>? blockedDomains,
WebSearchLocation? location,
}) =>
WebSearchConfig(
maxUses: maxUses,
allowedDomains: allowedDomains,
blockedDomains: blockedDomains,
location: location,
searchType: WebSearchType.web,
);