tools method

LLMBuilder tools(
  1. List<Tool> tools
)

Sets the function tools

Implementation

LLMBuilder tools(List<Tool> tools) {
  _config = _config.copyWith(tools: tools);
  return this;
}