| 297 | |
| 298 | template <typename T> |
| 299 | static std::string to_string(const T & val) { |
| 300 | std::stringstream ss; |
| 301 | ss << val; |
| 302 | return ss.str(); |
| 303 | } |
| 304 | |
| 305 | static std::vector<std::string> ctrlvec_load_prompt_file(std::string path, bool skip_empty_lines) { |
| 306 | std::vector<std::string> output; |