DeepSeekProvider constructor
DeepSeekProvider({})
Creates a new DeepSeek provider.
apiKey - Your DeepSeek API key.
modelName - The model to use (default: deepseek-chat).
timeout - Request timeout (default: 60s).
Implementation
DeepSeekProvider({
required this.apiKey,
this.modelName = _defaultModel,
this.timeout = HttpConfig.defaultTimeout,
});