\brief Decode the tokens \param tokens the tokens \return the decoded text
| 161 | /// \param tokens the tokens |
| 162 | /// \return the decoded text |
| 163 | std::string Tokenizer::decode(const std::vector<int>& tokens) { |
| 164 | return this->tokenizer->Decode(tokens); |
| 165 | } |
| 166 | |
| 167 | /// \brief Run time decoder |
| 168 | /// \param answer_token the answer token |
no outgoing calls
no test coverage detected