Tool constructor

Tool({
  1. List<FunctionDeclaration> functionDeclarations = const [],
  2. GoogleSearchRetrieval? googleSearchRetrieval,
  3. CodeExecution? codeExecution,
  4. Tool_GoogleSearch? googleSearch,
  5. Tool_ComputerUse? computerUse,
  6. UrlContext? urlContext,
})

Implementation

Tool({
  this.functionDeclarations = const [],
  this.googleSearchRetrieval,
  this.codeExecution,
  this.googleSearch,
  this.computerUse,
  this.urlContext,
}) : super(fullyQualifiedName);