registeredTools property
List<GroqToolItem>
get
registeredTools
Returns the registered tools in the chat Example:
final tools = chat.registeredTools;
print(tools.first.functionName); //prints the first tool name
Returns an empty list if no tools are registered
Implementation
List<GroqToolItem> get registeredTools => _registeredTools;