supportsToolCalling property
bool
get
supportsToolCalling
Check if this model supports tool calling
Implementation
bool get supportsToolCalling {
// Many Ollama models support tool calling
return model.contains('llama3') ||
model.contains('mistral') ||
model.contains('qwen') ||
model.contains('phi3');
}