ImportCustomSpeechLanguageModel

Imports a custom language model that was exported using the action ExportCustomSpeechLanguageModel.

Type: asynchronous

Parameter Description Required
identifier The identifier to give to the imported custom language model. Yes
modeldata The custom language model data. Send files to Media Server using a multipart/form-data HTTP POST request. Set this or modelpath
modelpath The path to the custom language model to import. The path must be absolute, or relative to the Media Server executable file. Set this or modeldata

Example

The following example imports a custom language model by specifying a file path:

/action=ImportCustomSpeechLanguageModel&identifier=MedicalTerms
                                       &modelpath=MedicalTerms.dat

The following example sends the data:

curl http://localhost:14000/action=ImportCustomSpeechLanguageModel
                            -F identifier=MedicalTerms
                            -F modeldata=@MedicalTerms.dat

Response

This action is asynchronous, so Media Server always returns success accompanied by a token. You can use this token with the QueueInfo action to retrieve the status of your request.