| 194 | } |
| 195 | |
| 196 | std::string join_voice_samples(const std::vector<std::string> & paths) { |
| 197 | std::string joined; |
| 198 | for (const auto & path : paths) { |
| 199 | if (!joined.empty()) { |
| 200 | joined += ","; |
| 201 | } |
| 202 | joined += path; |
| 203 | } |
| 204 | return joined; |
| 205 | } |
| 206 | |
| 207 | engine::runtime::TaskRequest make_task_request( |
| 208 | const engine::io::json::Value & object, |
no test coverage detected