| 7022 | } |
| 7023 | |
| 7024 | static bool llama_is_control_token(const llama_vocab & vocab, llama_token id) { |
| 7025 | return vocab.id_to_token[id].type == LLAMA_TOKEN_TYPE_CONTROL; |
| 7026 | } |
| 7027 | |
| 7028 | static bool llama_is_byte_token(const llama_vocab & vocab, llama_token id) { |
| 7029 | return vocab.id_to_token[id].type == LLAMA_TOKEN_TYPE_BYTE; |
no outgoing calls
no test coverage detected