webSearch property

bool? get webSearch

Force web search on or off for a turn that does not pass its own SendOptions to send; null lets the model decide. See model for the mutability, conversation-continuity and streaming-guard notes — they apply identically here.

Implementation

bool? get webSearch => _webSearch;
set webSearch (bool? value)

Implementation

set webSearch(bool? value) {
  _guardAgainstStreamingMutation('webSearch');
  _webSearch = value;
  notifyListeners();
}