supportsParallelToolCalling property
      
      bool
      get
      supportsParallelToolCalling
      
    
    
Check if this model supports parallel tool calling
Implementation
bool get supportsParallelToolCalling {
  // Based on Groq documentation, these models support parallel tool calling:
  // All tool-calling models except gemma2-9b-it support parallel tool use
  return supportsToolCalling && !model.contains('gemma2-9b-it');
}