ENUM
DeploymentModel
Deployment models describe how an engine or application operates on the network and where the data it works with is transmitted. See Veritone's developer documentation at https://steel-ventures.atlassian.net/wiki/spaces/VDH/pages/101364981/Engine+Deployment+Models for a full description.
link GraphQL Schema definition
1 enum DeploymentModel { 2 3 # The engine or application is fully isolated and does not call out to any 4 # external endpoints. Numerical code 0. 5 6 7 # The engine or application does not transmit data about its payload over the 8 # internet, 9 # but may still make external network calls for limited purposes. Numerical code 10 # 1. 11 12 13 # The engine or application is not network isolated and must call out to external 14 # services 15 # and transmit data about its payload. Numerical code 2. 16 17 18 # Human review of engine results is required. Numerical code 3. 19 20 }