Params

Use /params to retrieve the available language models from V-Blaze.

Gets the default parameter settings

get
Responses
200
Default parameters retrieved successfully
get
GET /params HTTP/1.1
Host: 
Accept: */*

No content

Sample Response

{
        "params": {
          "activitylevel": 175,
          "bufmaxtime": 30,
          "endian": "LITTLE",
          "idletimeout": 30,
          "languages": [
            "eng1"
          ],
          "model": "eng1:callcenter",
          "models": [
            "eng1:callcenter",
            "eng1:survey",
            "eng2:voicemail"
          ],
          "numtrans": true,
          "outputdir": "/opt/voci/ramfs",
          "punctrailing": 12,
          "punctuate": true,
          "pushconntimeout": 5,
          "queue": "bottom",
          "raw_events": false,
          "realtime": false,
          "recvtimeout": null,
          "scrubmindist": 0.3,
          "uttmaxsilence": 800,
          "uttmaxtime": 80,
          "uttminactivity": 500,
          "uttpadding": 300,
          "vadparams": {}
        }
      }

Explanation

The example response is a JSON object that shows the names of default system parameters that can be specified when initiating a transcription session and their default values.

Refer to Params for more information on the default parameters.

Last updated