`std::string Processor::Compose(const std::string& input, const StdVectorFst* fst) { StdVectorFst input_fst; compiler_->operator()(input, &input_fst); StdVectorFst lattice; fst::Compose(input_fst, *fst, &lattice); return ShortestPath(lattice); }` 这里输出为空 我用的openfst版本是https://github.com/csukuangfj/openfst/archive/refs/tags/sherpa-onnx-2024-06-19.tar.gz