We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb123b2 commit 6b76375Copy full SHA for 6b76375
examples/server/server.cpp
@@ -373,7 +373,7 @@ void get_req_parameters(const Request & req, whisper_params & params)
373
{
374
params.response_format = req.get_file_value("response-format").content;
375
}
376
- if (req.has_file("temerature"))
+ if (req.has_file("temperature"))
377
378
params.userdef_temp = std::stof(req.get_file_value("temperature").content);
379
@@ -429,7 +429,7 @@ int main(int argc, char ** argv) {
429
});
430
431
svr.Post("/inference", [&](const Request &req, Response &res){
432
- // aquire whisper model mutex lock
+ // acquire whisper model mutex lock
433
whisper_mutex.lock();
434
435
// first check user requested fields of the request
0 commit comments