WebSearchConfig.openai constructor
WebSearchConfig.openai({
- WebSearchContextSize contextSize = WebSearchContextSize.medium,
- WebSearchStrategy strategy = WebSearchStrategy.auto,
Create an OpenAI-optimized configuration
Implementation
factory WebSearchConfig.openai({
WebSearchContextSize contextSize = WebSearchContextSize.medium,
WebSearchStrategy strategy = WebSearchStrategy.auto,
}) =>
WebSearchConfig(
contextSize: contextSize,
strategy: strategy,
searchType: WebSearchType.web,
);