supportsCapability method
Check if the provider supports a specific capability
Implementation
bool supportsCapability(Type capability) {
if (capability == ChatCapability) return true;
// Add other capabilities as they are implemented
return false;
}