LlmCreateInput constructor

LlmCreateInput({
  1. String? modelName,
  2. required String modelPath,
  3. String? tokenizerPath,
  4. required ModelConfig config,
  5. String? pluginId,
})

Implementation

LlmCreateInput({
  this.modelName,
  required this.modelPath,
  this.tokenizerPath,
  required this.config,
  this.pluginId,
});