@@ -104,7 +104,6 @@ service:
104
104
granularity : utterance
105
105
identify_speakers : false
106
106
notify : true
107
- registry_files : []
108
107
text : []
109
108
urls :
110
109
- https://hume-tutorials.s3.amazonaws.com/faces.zip
@@ -127,6 +126,7 @@ service:
127
126
response :
128
127
docs : " "
129
128
type : JobId
129
+ property : job_id
130
130
examples :
131
131
- request :
132
132
urls :
@@ -176,7 +176,6 @@ service:
176
176
granularity : utterance
177
177
identify_speakers : false
178
178
notify : true
179
- registry_files : []
180
179
text : []
181
180
urls :
182
181
- https://hume-tutorials.s3.amazonaws.com/faces.zip
@@ -545,7 +544,7 @@ types:
545
544
type : string
546
545
docs : Name of the descriptive feature being expressed.
547
546
score :
548
- type : string
547
+ type : float
549
548
docs : Embedding value for the descriptive feature being expressed.
550
549
source :
551
550
openapi : ../expression-measurement/batch-openapi.json
@@ -568,7 +567,7 @@ types:
568
567
type : string
569
568
docs : Name of the emotion being expressed.
570
569
score :
571
- type : double
570
+ type : float
572
571
docs : Embedding value for the emotion being expressed.
573
572
source :
574
573
openapi : ../expression-measurement/batch-openapi.json
@@ -671,7 +670,7 @@ types:
671
670
type : string
672
671
docs : Name of the FACS 2.0 feature being expressed.
673
672
score :
674
- type : string
673
+ type : float
675
674
docs : Embedding value for the FACS 2.0 feature being expressed.
676
675
source :
677
676
openapi : ../expression-measurement/batch-openapi.json
@@ -880,9 +879,6 @@ types:
880
879
881
880
If you wish to supply more than 100 URLs, consider providing them as
882
881
an archive (`.zip`, `.tar.gz`, `.tar.bz2`, `.tar.xz`).
883
- registry_files :
884
- type : optional<list<string>>
885
- docs : List of File IDs corresponding to the files in the asset registry.
886
882
text :
887
883
type : optional<list<string>>
888
884
docs : Text to supply directly to our language and NER models.
@@ -1243,7 +1239,7 @@ types:
1243
1239
type : string
1244
1240
docs : Level of sentiment, ranging from `1` (negative) to `9` (positive)
1245
1241
score :
1246
- type : string
1242
+ type : float
1247
1243
docs : Prediction for this level of sentiment
1248
1244
source :
1249
1245
openapi : ../expression-measurement/batch-openapi.json
@@ -1255,169 +1251,176 @@ types:
1255
1251
source :
1256
1252
openapi : ../expression-measurement/batch-openapi.json
1257
1253
Source :
1258
- discriminant : type
1259
- base-properties : {}
1254
+ discriminated : false
1260
1255
union :
1261
- url : SourceUrl
1262
- file : SourceFile
1263
- text : SourceTextSource
1256
+ - SourceUrl
1257
+ - SourceFile
1258
+ - SourceTextSource
1264
1259
source :
1265
1260
openapi : ../expression-measurement/batch-openapi.json
1266
1261
SourceFile :
1267
- properties : {}
1262
+ properties :
1263
+ type : literal<"file">
1268
1264
extends :
1269
1265
- File
1270
1266
source :
1271
1267
openapi : ../expression-measurement/batch-openapi.json
1272
1268
SourceTextSource :
1273
- properties : {}
1269
+ properties :
1270
+ type : literal<"text">
1274
1271
source :
1275
1272
openapi : ../expression-measurement/batch-openapi.json
1276
1273
SourceUrl :
1277
- properties : {}
1274
+ properties :
1275
+ type : literal<"url">
1278
1276
extends :
1279
1277
- Url
1280
1278
source :
1281
1279
openapi : ../expression-measurement/batch-openapi.json
1282
- Url :
1283
- properties :
1284
- url :
1285
- type : string
1286
- docs : The URL of the source media file.
1287
- source :
1288
- openapi : ../expression-measurement/batch-openapi.json
1289
1280
StateEmbeddingGeneration :
1290
- discriminant : status
1291
- base-properties : {}
1281
+ discriminated : false
1292
1282
union :
1293
- QUEUED : StateEmbeddingGenerationQueued
1294
- IN_PROGRESS : StateEmbeddingGenerationInProgress
1295
- COMPLETED : StateEmbeddingGenerationCompletedEmbeddingGeneration
1296
- FAILED : StateEmbeddingGenerationFailed
1283
+ - StateEmbeddingGenerationQueued
1284
+ - StateEmbeddingGenerationInProgress
1285
+ - StateEmbeddingGenerationCompletedEmbeddingGeneration
1286
+ - StateEmbeddingGenerationFailed
1297
1287
source :
1298
1288
openapi : ../expression-measurement/batch-openapi.json
1299
1289
StateEmbeddingGenerationCompletedEmbeddingGeneration :
1300
- properties : {}
1290
+ properties :
1291
+ status : literal<"COMPLETED">
1301
1292
extends :
1302
1293
- CompletedEmbeddingGeneration
1303
1294
source :
1304
1295
openapi : ../expression-measurement/batch-openapi.json
1305
1296
StateEmbeddingGenerationFailed :
1306
- properties : {}
1297
+ properties :
1298
+ status : literal<"FAILED">
1307
1299
extends :
1308
1300
- Failed
1309
1301
source :
1310
1302
openapi : ../expression-measurement/batch-openapi.json
1311
1303
StateEmbeddingGenerationInProgress :
1312
- properties : {}
1304
+ properties :
1305
+ status : literal<"IN_PROGRESS">
1313
1306
extends :
1314
1307
- InProgress
1315
1308
source :
1316
1309
openapi : ../expression-measurement/batch-openapi.json
1317
1310
StateEmbeddingGenerationQueued :
1318
- properties : {}
1311
+ properties :
1312
+ status : literal<"QUEUED">
1319
1313
extends :
1320
1314
- Queued
1321
1315
source :
1322
1316
openapi : ../expression-measurement/batch-openapi.json
1323
1317
StateInference :
1324
- discriminant : status
1325
- base-properties : {}
1318
+ discriminated : false
1326
1319
union :
1327
- QUEUED : StateInferenceQueued
1328
- IN_PROGRESS : StateInferenceInProgress
1329
- COMPLETED : StateInferenceCompletedInference
1330
- FAILED : StateInferenceFailed
1320
+ - QueuedState
1321
+ - InProgressState
1322
+ - CompletedState
1323
+ - FailedState
1331
1324
source :
1332
1325
openapi : ../expression-measurement/batch-openapi.json
1333
- StateInferenceCompletedInference :
1334
- properties : {}
1326
+ CompletedState :
1327
+ properties :
1328
+ status : literal<"COMPLETED">
1335
1329
extends :
1336
1330
- CompletedInference
1337
1331
source :
1338
1332
openapi : ../expression-measurement/batch-openapi.json
1339
- StateInferenceFailed :
1340
- properties : {}
1333
+ FailedState :
1334
+ properties :
1335
+ status : literal<"FAILED">
1341
1336
extends :
1342
1337
- Failed
1343
1338
source :
1344
1339
openapi : ../expression-measurement/batch-openapi.json
1345
- StateInferenceInProgress :
1346
- properties : {}
1340
+ InProgressState :
1341
+ properties :
1342
+ status : literal<"IN_PROGRESS">
1347
1343
extends :
1348
1344
- InProgress
1349
1345
source :
1350
1346
openapi : ../expression-measurement/batch-openapi.json
1351
- StateInferenceQueued :
1352
- properties : {}
1347
+ QueuedState :
1348
+ properties :
1349
+ status : literal<"QUEUED">
1353
1350
extends :
1354
1351
- Queued
1355
1352
source :
1356
1353
openapi : ../expression-measurement/batch-openapi.json
1357
1354
StateTlInference :
1358
- discriminant : status
1359
- base-properties : {}
1355
+ discriminated : false
1360
1356
union :
1361
- QUEUED : StateTlInferenceQueued
1362
- IN_PROGRESS : StateTlInferenceInProgress
1363
- COMPLETED : StateTlInferenceCompletedTlInference
1364
- FAILED : StateTlInferenceFailed
1357
+ - StateTlInferenceQueued
1358
+ - StateTlInferenceInProgress
1359
+ - StateTlInferenceCompletedTlInference
1360
+ - StateTlInferenceFailed
1365
1361
source :
1366
1362
openapi : ../expression-measurement/batch-openapi.json
1367
1363
StateTlInferenceCompletedTlInference :
1368
- properties : {}
1364
+ properties :
1365
+ status : literal<"COMPLETED">
1369
1366
extends :
1370
1367
- CompletedTlInference
1371
1368
source :
1372
1369
openapi : ../expression-measurement/batch-openapi.json
1373
1370
StateTlInferenceFailed :
1374
- properties : {}
1371
+ properties :
1372
+ status : literal<"FAILED">
1375
1373
extends :
1376
1374
- Failed
1377
1375
source :
1378
1376
openapi : ../expression-measurement/batch-openapi.json
1379
1377
StateTlInferenceInProgress :
1380
- properties : {}
1378
+ properties :
1379
+ status : literal<"IN_PROGRESS">
1381
1380
extends :
1382
1381
- InProgress
1383
1382
source :
1384
1383
openapi : ../expression-measurement/batch-openapi.json
1385
1384
StateTlInferenceQueued :
1386
- properties : {}
1385
+ properties :
1386
+ status : literal<"QUEUED">
1387
1387
extends :
1388
1388
- Queued
1389
1389
source :
1390
1390
openapi : ../expression-measurement/batch-openapi.json
1391
1391
StateTraining :
1392
- discriminant : status
1393
- base-properties : {}
1392
+ discriminated : false
1394
1393
union :
1395
- QUEUED : StateTrainingQueued
1396
- IN_PROGRESS : StateTrainingInProgress
1397
- COMPLETED : StateTrainingCompletedTraining
1398
- FAILED : StateTrainingFailed
1394
+ - StateTrainingQueued
1395
+ - StateTrainingInProgress
1396
+ - StateTrainingCompletedTraining
1397
+ - StateTrainingFailed
1399
1398
source :
1400
1399
openapi : ../expression-measurement/batch-openapi.json
1401
1400
StateTrainingCompletedTraining :
1402
- properties : {}
1401
+ properties :
1402
+ status : literal<"COMPLETED">
1403
1403
extends :
1404
1404
- CompletedTraining
1405
1405
source :
1406
1406
openapi : ../expression-measurement/batch-openapi.json
1407
1407
StateTrainingFailed :
1408
- properties : {}
1408
+ properties :
1409
+ status : literal<"FAILED">
1409
1410
extends :
1410
1411
- Failed
1411
1412
source :
1412
1413
openapi : ../expression-measurement/batch-openapi.json
1413
1414
StateTrainingInProgress :
1414
- properties : {}
1415
+ properties :
1416
+ status : literal<"IN_PROGRESS">
1415
1417
extends :
1416
1418
- InProgress
1417
1419
source :
1418
1420
openapi : ../expression-measurement/batch-openapi.json
1419
1421
StateTrainingQueued :
1420
- properties : {}
1422
+ properties :
1423
+ status : literal<"QUEUED">
1421
1424
extends :
1422
1425
- Queued
1423
1426
source :
@@ -1469,19 +1472,20 @@ types:
1469
1472
source :
1470
1473
openapi : ../expression-measurement/batch-openapi.json
1471
1474
Task :
1472
- discriminant : type
1473
- base-properties : {}
1475
+ discriminated : false
1474
1476
union :
1475
- classification : TaskClassification
1476
- regression : TaskRegression
1477
+ - TaskClassification
1478
+ - TaskRegression
1477
1479
source :
1478
1480
openapi : ../expression-measurement/batch-openapi.json
1479
1481
TaskClassification :
1480
- properties : {}
1482
+ properties :
1483
+ type : literal<"classification">
1481
1484
source :
1482
1485
openapi : ../expression-measurement/batch-openapi.json
1483
1486
TaskRegression :
1484
- properties : {}
1487
+ properties :
1488
+ type : literal<"regression">
1485
1489
source :
1486
1490
openapi : ../expression-measurement/batch-openapi.json
1487
1491
TextSource : map<string, unknown>
@@ -1509,9 +1513,6 @@ types:
1509
1513
1510
1514
If you wish to supply more than 100 URLs, consider providing them as
1511
1515
an archive (`.zip`, `.tar.gz`, `.tar.bz2`, `.tar.xz`).
1512
- registry_files :
1513
- type : optional<list<string>>
1514
- docs : List of File IDs corresponding to the files in the asset registry.
1515
1516
callback_url :
1516
1517
type : optional<string>
1517
1518
docs : >-
@@ -1548,7 +1549,7 @@ types:
1548
1549
type : string
1549
1550
docs : Category of toxicity.
1550
1551
score :
1551
- type : string
1552
+ type : float
1552
1553
docs : Prediction for this category of toxicity
1553
1554
source :
1554
1555
openapi : ../expression-measurement/batch-openapi.json
@@ -1729,6 +1730,13 @@ types:
1729
1730
source :
1730
1731
openapi : ../expression-measurement/batch-openapi.json
1731
1732
UnionPredictResult : InferenceSourcePredictResult
1733
+ Url :
1734
+ properties :
1735
+ url :
1736
+ type : string
1737
+ docs : The URL of the source media file.
1738
+ source :
1739
+ openapi : ../expression-measurement/batch-openapi.json
1732
1740
ValidationArgs :
1733
1741
properties :
1734
1742
positive_label : optional<Target>
0 commit comments