GroqClient constructor

GroqClient(
  1. GroqConfig config
)

Implementation

GroqClient(this.config) {
  // Use unified Dio client factory with Groq-specific strategy
  dio = DioClientFactory.create(
    strategy: GroqDioStrategy(),
    config: config,
  );
}