createLlm method
UNSUPPORTED ON WEB
Create and configure an LLM
Implementation
Future<String> createLlm({
required String providerName,
required dynamic config,
Map<String, dynamic>? options,
}) async {
_logger.fine('LLM creation not supported on web platform');
throw MCPPlatformNotSupportedException(
'LLM creation is not supported on web platform',
errorCode: 'WEB_LLM_NOT_SUPPORTED',
);
}