| 318 | } |
| 319 | |
| 320 | std::string Qwen2VL::generate(chat_meta_info_t& meta_info, int length_limit, std::ostream& os, std::function<bool()> is_cancelled) { |
| 321 | return this->_shared_generate(meta_info, length_limit, os, is_cancelled); |
| 322 | } |
| 323 | |
| 324 | std::string Qwen2VL::generate_with_prompt(chat_meta_info_t& meta_info, lm_uniform_input_t& input, int length_limit, std::ostream& os) { |
| 325 | if (!this->insert(meta_info, input)) { |
nothing calls this directly
no test coverage detected