init abstract method

Future<void> init({
  1. String modelPath = "/data/local/tmp/llm/model.bin",
  2. int maxTokens = 1024,
  3. double temperature = 1.0,
  4. int randomSeed = 1,
  5. int topK = 1,
})

Implementation

Future<void> init({
  String modelPath = "/data/local/tmp/llm/model.bin",
  int maxTokens = 1024,
  double temperature = 1.0,
  int randomSeed = 1,
  int topK = 1,
});