\brief Run time decoder \param answer_token the answer token \return the decoded text
| 168 | /// \param answer_token the answer token |
| 169 | /// \return the decoded text |
| 170 | std::string Tokenizer::run_time_decoder(int answer_token) { |
| 171 | return this->cpt_to_utf8(this->tokenizer->IdToToken(answer_token)); |
| 172 | } |
no test coverage detected