stopCompletion method

Future<void> stopCompletion()

Implementation

Future<void> stopCompletion() async {
  if (_context == null) throw CactusException('CactusLM not initialized');
  await _context!.stopCompletion();
}