createLlm method

Future<String> createLlm({
  1. required String providerName,
  2. required dynamic config,
  3. Map<String, dynamic>? options,
})

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',
  );
}