INPUT_OBJECT

UpdateLibraryEngineModel

link GraphQL Schema definition

1input UpdateLibraryEngineModel {
4
2# ID of the library engine model to update.
3id: ID!
7
5# Id of the train job.
6trainJobId: ID
10
8# Status of the train job.
9trainStatus: LibraryEngineModelTrainStatus
16
11# The URL to a file containing or related to the engine model.
12# Submit either this field _or_ `file`, not both.
13# Use this field if the data is stored in a separate, internet-accessible
14# location and not managed by Veritone APIs.
15dataUrl: String
19
17# Optional free-form block containing engine-specific metadata.
18jsondata: JSONData
25
20# If a file is uploaded, you can explicitly specify the content type
21# (a valid MIME type string) with this field. Often this is not necessary
22# as the HTTP multipart form POST client will set content type on the
23# file object implicitly.
24contentType: String
32
26# An optional data file containing or related to the engine model.
27# Use multipart form POST to submit this field.
28# Submit either this field _or_ `dataUrl`, not both. If a file is
29# uploaded, the server will store it and then set `dataUrl` to
30# its location.
31file: UploadedFile
34
33accuracy: Int
36
35configurationId: ID
37}