\brief Show the model information \param input_list, std::vector
| 502 | /// \brief Show the model information |
| 503 | /// \param input_list, std::vector<std::string> |
| 504 | void Runner::cmd_show(std::vector<std::string>& input_list) { |
| 505 | std::cout << this->auto_chat_engine->show_model_info() << std::endl; |
| 506 | std::cout << " max context length : " << this->auto_chat_engine->get_max_length() << std::endl; |
| 507 | std::cout << std::endl; |
| 508 | |
| 509 | } |
| 510 | |
| 511 | /// \brief Set the model parameters |
| 512 | /// \param input_list, std::vector<std::string> |
no test coverage detected