| 321 | } |
| 322 | |
| 323 | void server_tokens::insert(const llama_tokens & inp_tokens) { |
| 324 | GGML_ASSERT(!has_mtmd); // only allow this if mtmd is disabled |
| 325 | tokens.insert(tokens.end(), inp_tokens.begin(), inp_tokens.end()); |
| 326 | } |
| 327 | |
| 328 | const llama_tokens & server_tokens::get_text_tokens() const { |
| 329 | GGML_ASSERT(!has_mtmd); // only allow this if mtmd is disabled |