| 84 | } |
| 85 | |
| 86 | std::string Gemma3_Text_Only::generate_with_prompt(chat_meta_info_t& meta_info, lm_uniform_input_t& input, int length_limit, std::ostream& os) { |
| 87 | if (!this->insert(meta_info, input)) { |
| 88 | return ""; |
| 89 | } |
| 90 | return this->_shared_generate(meta_info, length_limit, os); |
| 91 | } |
nothing calls this directly
no test coverage detected