configureHttpClientAdapter static method

void configureHttpClientAdapter(
  1. Dio dio,
  2. LLMConfig config
)

Configure HTTP client adapter with proxy and SSL settings Stub implementation that throws an error

Implementation

static void configureHttpClientAdapter(Dio dio, LLMConfig config) {
  throw UnsupportedError(
    'HTTP client adapter configuration is not supported on this platform. '
    'This is a stub implementation that should not be called.',
  );
}