// sherpa-onnx/csrc/online-lm.cc // // Copyright (c) 2023 Pingfeng Luo // Copyright (c) 2023 Xiaomi Corporation #include "sherpa-onnx/csrc/online-lm.h" #include #include #include #include "sherpa-onnx/csrc/online-rnn-lm.h" namespace sherpa_onnx { std::unique_ptr OnlineLM::Create(const OnlineLMConfig &config) { return std::make_unique(config); } } // namespace sherpa_onnx