Skip to content

Commands Overview

Commands are used to interact with the console as well as through the network socket. A command has two parts: the command and the arguments. In the console, a command could look something like this:

1
createModel --name 'myModel' --type 'SpeakerVerification'

The equivalent of this in the network server would be:

1
2
3
4
5
6
7
{
  "command": "createModel",
  "arguments": {
    "name": "myModel",
    "type": "SpeakerVerification"
  }
}

The various commands and their arguments can be found in this section. Network-socket-related commands can be found under the Network section.