@tokenlabai/mcp-server 0.4.2 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,10 +6,11 @@
6
6
  "openapi": "3.0.3",
7
7
  "title": "TokenLab AI Gateway",
8
8
  "version": "1.0.0",
9
- "sha256": "a907542f726d1cd6fdee3c0bc369848b500edbb6a23d1014d13781d722e2da60"
9
+ "sha256": "f494fcfb2b4d67aaddc88a2ec164739c807bb59331a7e5270fd9d9fa282745e0"
10
10
  },
11
11
  "default_profile": "core",
12
12
  "profiles": [
13
+ "catalog",
13
14
  "core",
14
15
  "full"
15
16
  ],
@@ -17,6 +18,7 @@
17
18
  "tools": [
18
19
  {
19
20
  "name": "bind_seedance_visual_validation_result",
21
+ "title": "Bind Seedance real-person verification result",
20
22
  "operation_id": "bindSeedanceVisualValidationResult",
21
23
  "method": "POST",
22
24
  "path": "/v1/videos/assets/visual-validation-results",
@@ -97,6 +99,7 @@
97
99
  },
98
100
  {
99
101
  "name": "cancel_anthropic_message_batch",
102
+ "title": "Cancel message batch (Anthropic-compatible)",
100
103
  "operation_id": "cancelAnthropicMessageBatch",
101
104
  "method": "POST",
102
105
  "path": "/v1/messages/batches/{message_batch_id}/cancel",
@@ -133,13 +136,14 @@
133
136
  },
134
137
  "annotations": {
135
138
  "readOnlyHint": false,
136
- "destructiveHint": false,
137
- "idempotentHint": false,
139
+ "destructiveHint": true,
140
+ "idempotentHint": true,
138
141
  "openWorldHint": true
139
142
  }
140
143
  },
141
144
  {
142
145
  "name": "cancel_batch",
146
+ "title": "Cancel batch",
143
147
  "operation_id": "cancelBatch",
144
148
  "method": "POST",
145
149
  "path": "/v1/batches/{batch_id}/cancel",
@@ -175,13 +179,14 @@
175
179
  },
176
180
  "annotations": {
177
181
  "readOnlyHint": false,
178
- "destructiveHint": false,
179
- "idempotentHint": false,
182
+ "destructiveHint": true,
183
+ "idempotentHint": true,
180
184
  "openWorldHint": true
181
185
  }
182
186
  },
183
187
  {
184
188
  "name": "cancel_task",
189
+ "title": "Cancel async task",
185
190
  "operation_id": "cancelAsyncTask",
186
191
  "method": "DELETE",
187
192
  "path": "/v1/tasks/{id}",
@@ -243,6 +248,7 @@
243
248
  },
244
249
  {
245
250
  "name": "compact_response",
251
+ "title": "Compact response context (OpenAI Responses API)",
246
252
  "operation_id": "compactResponse",
247
253
  "method": "POST",
248
254
  "path": "/v1/responses/compact",
@@ -316,6 +322,7 @@
316
322
  },
317
323
  {
318
324
  "name": "count_anthropic_message_tokens",
325
+ "title": "Count message tokens (Anthropic-compatible)",
319
326
  "operation_id": "countAnthropicMessageTokens",
320
327
  "method": "POST",
321
328
  "path": "/v1/messages/count_tokens",
@@ -484,6 +491,7 @@
484
491
  },
485
492
  {
486
493
  "name": "create_3d_model",
494
+ "title": "Create 3D model generation task",
487
495
  "operation_id": "create3D",
488
496
  "method": "POST",
489
497
  "path": "/v1/3d/generations",
@@ -593,6 +601,7 @@
593
601
  },
594
602
  {
595
603
  "name": "create_anthropic_message",
604
+ "title": "Create message (Anthropic-compatible)",
596
605
  "operation_id": "createAnthropicMessage",
597
606
  "method": "POST",
598
607
  "path": "/v1/messages",
@@ -793,6 +802,7 @@
793
802
  },
794
803
  {
795
804
  "name": "create_anthropic_message_batch",
805
+ "title": "Create message batch (Anthropic-compatible)",
796
806
  "operation_id": "createAnthropicMessageBatch",
797
807
  "method": "POST",
798
808
  "path": "/v1/messages/batches",
@@ -1003,6 +1013,7 @@
1003
1013
  },
1004
1014
  {
1005
1015
  "name": "create_batch",
1016
+ "title": "Create batch",
1006
1017
  "operation_id": "createBatch",
1007
1018
  "method": "POST",
1008
1019
  "path": "/v1/batches",
@@ -1088,6 +1099,7 @@
1088
1099
  },
1089
1100
  {
1090
1101
  "name": "create_chat_completion",
1102
+ "title": "Create chat completion",
1091
1103
  "operation_id": "createChatCompletion",
1092
1104
  "method": "POST",
1093
1105
  "path": "/v1/chat/completions",
@@ -1189,6 +1201,62 @@
1189
1201
  "type",
1190
1202
  "image_url"
1191
1203
  ]
1204
+ },
1205
+ {
1206
+ "type": "object",
1207
+ "properties": {
1208
+ "type": {
1209
+ "type": "string",
1210
+ "enum": [
1211
+ "video_url"
1212
+ ]
1213
+ },
1214
+ "video_url": {
1215
+ "type": "object",
1216
+ "properties": {
1217
+ "url": {
1218
+ "type": "string"
1219
+ }
1220
+ },
1221
+ "required": [
1222
+ "url"
1223
+ ]
1224
+ }
1225
+ },
1226
+ "required": [
1227
+ "type",
1228
+ "video_url"
1229
+ ]
1230
+ },
1231
+ {
1232
+ "type": "object",
1233
+ "properties": {
1234
+ "type": {
1235
+ "type": "string",
1236
+ "enum": [
1237
+ "input_audio"
1238
+ ]
1239
+ },
1240
+ "input_audio": {
1241
+ "type": "object",
1242
+ "properties": {
1243
+ "data": {
1244
+ "type": "string",
1245
+ "description": "Public audio URL or Base64 data URL."
1246
+ },
1247
+ "format": {
1248
+ "type": "string"
1249
+ }
1250
+ },
1251
+ "required": [
1252
+ "data"
1253
+ ]
1254
+ }
1255
+ },
1256
+ "required": [
1257
+ "type",
1258
+ "input_audio"
1259
+ ]
1192
1260
  }
1193
1261
  ]
1194
1262
  }
@@ -1442,7 +1510,7 @@
1442
1510
  },
1443
1511
  "top_k": {
1444
1512
  "type": "integer",
1445
- "minimum": 1,
1513
+ "minimum": 0,
1446
1514
  "description": "Top-k sampling cutoff for compatible providers."
1447
1515
  },
1448
1516
  "logit_bias": {
@@ -1464,6 +1532,35 @@
1464
1532
  "additionalProperties": true,
1465
1533
  "description": "Audio output configuration when requesting audio modality."
1466
1534
  },
1535
+ "translation_options": {
1536
+ "type": "object",
1537
+ "required": [
1538
+ "target_lang"
1539
+ ],
1540
+ "properties": {
1541
+ "source_lang": {
1542
+ "type": "string",
1543
+ "description": "Source language code. Omit when the model supports automatic detection."
1544
+ },
1545
+ "target_lang": {
1546
+ "type": "string",
1547
+ "description": "Target language code."
1548
+ }
1549
+ },
1550
+ "description": "Language settings for models that translate audio or video through Chat Completions."
1551
+ },
1552
+ "speech_rate": {
1553
+ "type": "number",
1554
+ "minimum": 0.5,
1555
+ "maximum": 2,
1556
+ "description": "Speech rate for compatible translated audio output."
1557
+ },
1558
+ "repetition_penalty": {
1559
+ "type": "number",
1560
+ "minimum": 0,
1561
+ "exclusiveMinimum": true,
1562
+ "description": "Repetition penalty for compatible models."
1563
+ },
1467
1564
  "prediction": {
1468
1565
  "type": "object",
1469
1566
  "additionalProperties": true,
@@ -1513,6 +1610,9 @@
1513
1610
  "logit_bias",
1514
1611
  "modalities",
1515
1612
  "audio",
1613
+ "translation_options",
1614
+ "speech_rate",
1615
+ "repetition_penalty",
1516
1616
  "prediction",
1517
1617
  "service_tier"
1518
1618
  ],
@@ -1527,6 +1627,7 @@
1527
1627
  },
1528
1628
  {
1529
1629
  "name": "create_embedding",
1630
+ "title": "Create embeddings",
1530
1631
  "operation_id": "createEmbedding",
1531
1632
  "method": "POST",
1532
1633
  "path": "/v1/embeddings",
@@ -1623,6 +1724,7 @@
1623
1724
  },
1624
1725
  {
1625
1726
  "name": "create_gemini_content",
1727
+ "title": "Generate content (Gemini-compatible)",
1626
1728
  "operation_id": "geminiGenerateContent",
1627
1729
  "method": "POST",
1628
1730
  "path": "/v1beta/models/{model}:generateContent",
@@ -2079,6 +2181,7 @@
2079
2181
  },
2080
2182
  {
2081
2183
  "name": "create_image",
2184
+ "title": "Create image",
2082
2185
  "operation_id": "createImage",
2083
2186
  "method": "POST",
2084
2187
  "path": "/v1/images/generations",
@@ -2322,6 +2425,7 @@
2322
2425
  },
2323
2426
  {
2324
2427
  "name": "create_image_file",
2428
+ "title": "Create image",
2325
2429
  "operation_id": "createImage",
2326
2430
  "method": "POST",
2327
2431
  "path": "/v1/images/generations",
@@ -2520,6 +2624,7 @@
2520
2624
  },
2521
2625
  {
2522
2626
  "name": "create_image_variation",
2627
+ "title": "Create image variation",
2523
2628
  "operation_id": "createImageVariation",
2524
2629
  "method": "POST",
2525
2630
  "path": "/v1/images/variations",
@@ -2588,6 +2693,7 @@
2588
2693
  },
2589
2694
  {
2590
2695
  "name": "create_multimodal_embedding",
2696
+ "title": "Create multimodal embeddings",
2591
2697
  "operation_id": "createMultimodalEmbedding",
2592
2698
  "method": "POST",
2593
2699
  "path": "/v1/multimodal/embeddings",
@@ -2694,6 +2800,7 @@
2694
2800
  },
2695
2801
  {
2696
2802
  "name": "create_music",
2803
+ "title": "Create music generation task",
2697
2804
  "operation_id": "createMusic",
2698
2805
  "method": "POST",
2699
2806
  "path": "/v1/music/generations",
@@ -2827,6 +2934,7 @@
2827
2934
  },
2828
2935
  {
2829
2936
  "name": "create_response",
2937
+ "title": "Create response (OpenAI Responses API)",
2830
2938
  "operation_id": "createResponse",
2831
2939
  "method": "POST",
2832
2940
  "path": "/v1/responses",
@@ -2993,6 +3101,7 @@
2993
3101
  },
2994
3102
  {
2995
3103
  "name": "create_seedance_material_asset",
3104
+ "title": "Create Seedance material asset",
2996
3105
  "operation_id": "createSeedanceMaterialAsset",
2997
3106
  "method": "POST",
2998
3107
  "path": "/v1/videos/assets",
@@ -3082,6 +3191,7 @@
3082
3191
  },
3083
3192
  {
3084
3193
  "name": "create_seedance_material_asset_group",
3194
+ "title": "Create Seedance material asset group",
3085
3195
  "operation_id": "createSeedanceMaterialAssetGroup",
3086
3196
  "method": "POST",
3087
3197
  "path": "/v1/videos/assets/groups",
@@ -3158,6 +3268,7 @@
3158
3268
  },
3159
3269
  {
3160
3270
  "name": "create_seedance_visual_validation_session",
3271
+ "title": "Create Seedance real-person verification session",
3161
3272
  "operation_id": "createSeedanceVisualValidationSession",
3162
3273
  "method": "POST",
3163
3274
  "path": "/v1/videos/assets/visual-validation-sessions",
@@ -3213,6 +3324,7 @@
3213
3324
  },
3214
3325
  {
3215
3326
  "name": "create_speech",
3327
+ "title": "Create speech",
3216
3328
  "operation_id": "createSpeech",
3217
3329
  "method": "POST",
3218
3330
  "path": "/v1/audio/speech",
@@ -3336,6 +3448,7 @@
3336
3448
  },
3337
3449
  {
3338
3450
  "name": "create_video",
3451
+ "title": "Create video generation task",
3339
3452
  "operation_id": "createVideo",
3340
3453
  "method": "POST",
3341
3454
  "path": "/v1/videos/generations",
@@ -3749,6 +3862,7 @@
3749
3862
  },
3750
3863
  {
3751
3864
  "name": "create_volc_compatible_seedance_task",
3865
+ "title": "Create Seedance task (Volc-compatible)",
3752
3866
  "operation_id": "createVolcCompatibleSeedanceTask",
3753
3867
  "method": "POST",
3754
3868
  "path": "/api/v3/contents/generations/tasks",
@@ -4036,6 +4150,7 @@
4036
4150
  },
4037
4151
  {
4038
4152
  "name": "create_world",
4153
+ "title": "Create world generation task",
4039
4154
  "operation_id": "createWorld",
4040
4155
  "method": "POST",
4041
4156
  "path": "/v1/worlds/generations",
@@ -4207,6 +4322,7 @@
4207
4322
  },
4208
4323
  {
4209
4324
  "name": "delete_anthropic_message_batch",
4325
+ "title": "Delete message batch (Anthropic-compatible)",
4210
4326
  "operation_id": "deleteAnthropicMessageBatch",
4211
4327
  "method": "DELETE",
4212
4328
  "path": "/v1/messages/batches/{message_batch_id}",
@@ -4250,6 +4366,7 @@
4250
4366
  },
4251
4367
  {
4252
4368
  "name": "delete_file",
4369
+ "title": "Delete file",
4253
4370
  "operation_id": "deleteFile",
4254
4371
  "method": "DELETE",
4255
4372
  "path": "/v1/files/{file_id}",
@@ -4294,6 +4411,7 @@
4294
4411
  },
4295
4412
  {
4296
4413
  "name": "delete_response",
4414
+ "title": "Delete response",
4297
4415
  "operation_id": "deleteResponse",
4298
4416
  "method": "DELETE",
4299
4417
  "path": "/v1/responses/{id}",
@@ -4337,6 +4455,7 @@
4337
4455
  },
4338
4456
  {
4339
4457
  "name": "delete_seedance_material_asset",
4458
+ "title": "Delete Seedance material asset",
4340
4459
  "operation_id": "deleteSeedanceMaterialAsset",
4341
4460
  "method": "DELETE",
4342
4461
  "path": "/v1/videos/assets/{assetId}",
@@ -4379,6 +4498,7 @@
4379
4498
  },
4380
4499
  {
4381
4500
  "name": "delete_seedance_material_asset_group",
4501
+ "title": "Delete Seedance material asset group",
4382
4502
  "operation_id": "deleteSeedanceMaterialAssetGroup",
4383
4503
  "method": "DELETE",
4384
4504
  "path": "/v1/videos/assets/groups/{groupId}",
@@ -4421,6 +4541,7 @@
4421
4541
  },
4422
4542
  {
4423
4543
  "name": "delete_volc_compatible_seedance_task",
4544
+ "title": "Cancel Seedance task (Volc-compatible)",
4424
4545
  "operation_id": "deleteVolcCompatibleSeedanceTask",
4425
4546
  "method": "DELETE",
4426
4547
  "path": "/api/v3/contents/generations/tasks/{id}",
@@ -4464,6 +4585,7 @@
4464
4585
  },
4465
4586
  {
4466
4587
  "name": "delete_world",
4588
+ "title": "Delete World Labs world",
4467
4589
  "operation_id": "deleteWorld",
4468
4590
  "method": "DELETE",
4469
4591
  "path": "/v1/worlds/{id}",
@@ -4507,6 +4629,7 @@
4507
4629
  },
4508
4630
  {
4509
4631
  "name": "dispatch_volc_compatible_seedance_action_get",
4632
+ "title": "Seedance Action dispatcher (GET)",
4510
4633
  "operation_id": "dispatchVolcCompatibleSeedanceActionGet",
4511
4634
  "method": "GET",
4512
4635
  "path": "/api/v3",
@@ -4560,6 +4683,7 @@
4560
4683
  },
4561
4684
  {
4562
4685
  "name": "dispatch_volc_compatible_seedance_action_post",
4686
+ "title": "Seedance Action dispatcher (POST)",
4563
4687
  "operation_id": "dispatchVolcCompatibleSeedanceActionPost",
4564
4688
  "method": "POST",
4565
4689
  "path": "/api/v3",
@@ -4610,6 +4734,7 @@
4610
4734
  },
4611
4735
  {
4612
4736
  "name": "edit_image",
4737
+ "title": "Edit image",
4613
4738
  "operation_id": "editImage",
4614
4739
  "method": "POST",
4615
4740
  "path": "/v1/images/edits",
@@ -4833,6 +4958,7 @@
4833
4958
  },
4834
4959
  {
4835
4960
  "name": "edit_image_file",
4961
+ "title": "Edit image",
4836
4962
  "operation_id": "editImage",
4837
4963
  "method": "POST",
4838
4964
  "path": "/v1/images/edits",
@@ -5012,6 +5138,7 @@
5012
5138
  },
5013
5139
  {
5014
5140
  "name": "get_3_dtask",
5141
+ "title": "Get 3D task status",
5015
5142
  "operation_id": "get3DTask",
5016
5143
  "method": "GET",
5017
5144
  "path": "/v1/3d/generations/{id}",
@@ -5054,6 +5181,7 @@
5054
5181
  },
5055
5182
  {
5056
5183
  "name": "get_gemini_model",
5184
+ "title": "Get Gemini-native model",
5057
5185
  "operation_id": "getGeminiModel",
5058
5186
  "method": "GET",
5059
5187
  "path": "/v1beta/models/{model}",
@@ -5096,6 +5224,7 @@
5096
5224
  },
5097
5225
  {
5098
5226
  "name": "get_image_task_status_alias",
5227
+ "title": "Get image task status",
5099
5228
  "operation_id": "getImageTaskStatusAlias",
5100
5229
  "method": "GET",
5101
5230
  "path": "/v1/images/{id}",
@@ -5140,6 +5269,7 @@
5140
5269
  },
5141
5270
  {
5142
5271
  "name": "get_model",
5272
+ "title": "Get model",
5143
5273
  "operation_id": "getModel",
5144
5274
  "method": "GET",
5145
5275
  "path": "/v1/models/{model}",
@@ -5149,6 +5279,7 @@
5149
5279
  "Models"
5150
5280
  ],
5151
5281
  "profiles": [
5282
+ "catalog",
5152
5283
  "core",
5153
5284
  "full"
5154
5285
  ],
@@ -5184,6 +5315,7 @@
5184
5315
  },
5185
5316
  {
5186
5317
  "name": "get_model_pricing",
5318
+ "title": "Get model pricing",
5187
5319
  "operation_id": "getModelPricing",
5188
5320
  "method": "GET",
5189
5321
  "path": "/v1/models/{model}/pricing",
@@ -5193,6 +5325,7 @@
5193
5325
  "Models"
5194
5326
  ],
5195
5327
  "profiles": [
5328
+ "catalog",
5196
5329
  "core",
5197
5330
  "full"
5198
5331
  ],
@@ -5228,6 +5361,7 @@
5228
5361
  },
5229
5362
  {
5230
5363
  "name": "get_music_task",
5364
+ "title": "Get music task status",
5231
5365
  "operation_id": "getMusicTask",
5232
5366
  "method": "GET",
5233
5367
  "path": "/v1/music/generations/{id}",
@@ -5270,6 +5404,7 @@
5270
5404
  },
5271
5405
  {
5272
5406
  "name": "get_pricing",
5407
+ "title": "List model pricing",
5273
5408
  "operation_id": "getPricing",
5274
5409
  "method": "GET",
5275
5410
  "path": "/v1/pricing",
@@ -5279,6 +5414,7 @@
5279
5414
  "Models"
5280
5415
  ],
5281
5416
  "profiles": [
5417
+ "catalog",
5282
5418
  "core",
5283
5419
  "full"
5284
5420
  ],
@@ -5316,6 +5452,7 @@
5316
5452
  },
5317
5453
  {
5318
5454
  "name": "get_seedance_material_asset",
5455
+ "title": "Get Seedance material asset",
5319
5456
  "operation_id": "getSeedanceMaterialAsset",
5320
5457
  "method": "GET",
5321
5458
  "path": "/v1/videos/assets/{assetId}",
@@ -5358,6 +5495,7 @@
5358
5495
  },
5359
5496
  {
5360
5497
  "name": "get_seedance_material_asset_group",
5498
+ "title": "Get Seedance material asset group",
5361
5499
  "operation_id": "getSeedanceMaterialAssetGroup",
5362
5500
  "method": "GET",
5363
5501
  "path": "/v1/videos/assets/groups/{groupId}",
@@ -5400,6 +5538,7 @@
5400
5538
  },
5401
5539
  {
5402
5540
  "name": "get_task_status",
5541
+ "title": "Get async task status",
5403
5542
  "operation_id": "getAsyncTask",
5404
5543
  "method": "GET",
5405
5544
  "path": "/v1/tasks/{id}",
@@ -5461,6 +5600,7 @@
5461
5600
  },
5462
5601
  {
5463
5602
  "name": "get_video_task",
5603
+ "title": "Get video task status",
5464
5604
  "operation_id": "getVideoTask",
5465
5605
  "method": "GET",
5466
5606
  "path": "/v1/videos/generations/{id}",
@@ -5504,6 +5644,7 @@
5504
5644
  },
5505
5645
  {
5506
5646
  "name": "get_volc_compatible_seedance_task",
5647
+ "title": "Get Seedance task (Volc-compatible)",
5507
5648
  "operation_id": "getVolcCompatibleSeedanceTask",
5508
5649
  "method": "GET",
5509
5650
  "path": "/api/v3/contents/generations/tasks/{id}",
@@ -5547,6 +5688,7 @@
5547
5688
  },
5548
5689
  {
5549
5690
  "name": "get_world",
5691
+ "title": "Get World Labs world",
5550
5692
  "operation_id": "getWorld",
5551
5693
  "method": "GET",
5552
5694
  "path": "/v1/worlds/{id}",
@@ -5590,6 +5732,7 @@
5590
5732
  },
5591
5733
  {
5592
5734
  "name": "get_world_media_asset",
5735
+ "title": "Get World Labs media asset",
5593
5736
  "operation_id": "getWorldMediaAsset",
5594
5737
  "method": "GET",
5595
5738
  "path": "/v1/worlds/media-assets/{id}",
@@ -5633,6 +5776,7 @@
5633
5776
  },
5634
5777
  {
5635
5778
  "name": "get_world_status",
5779
+ "title": "Get world generation status",
5636
5780
  "operation_id": "getWorldStatus",
5637
5781
  "method": "GET",
5638
5782
  "path": "/v1/worlds/generations/{id}",
@@ -5693,6 +5837,7 @@
5693
5837
  },
5694
5838
  {
5695
5839
  "name": "list_anthropic_message_batches",
5840
+ "title": "List message batches (Anthropic-compatible)",
5696
5841
  "operation_id": "listAnthropicMessageBatches",
5697
5842
  "method": "GET",
5698
5843
  "path": "/v1/messages/batches",
@@ -5745,6 +5890,7 @@
5745
5890
  },
5746
5891
  {
5747
5892
  "name": "list_batches",
5893
+ "title": "List batches",
5748
5894
  "operation_id": "listBatches",
5749
5895
  "method": "GET",
5750
5896
  "path": "/v1/batches",
@@ -5790,6 +5936,7 @@
5790
5936
  },
5791
5937
  {
5792
5938
  "name": "list_files",
5939
+ "title": "List files",
5793
5940
  "operation_id": "listFiles",
5794
5941
  "method": "GET",
5795
5942
  "path": "/v1/files",
@@ -5847,6 +5994,7 @@
5847
5994
  },
5848
5995
  {
5849
5996
  "name": "list_gemini_models",
5997
+ "title": "List Gemini-native models",
5850
5998
  "operation_id": "listGeminiModels",
5851
5999
  "method": "GET",
5852
6000
  "path": "/v1beta/models",
@@ -5892,6 +6040,7 @@
5892
6040
  },
5893
6041
  {
5894
6042
  "name": "list_models",
6043
+ "title": "List models",
5895
6044
  "operation_id": "listModels",
5896
6045
  "method": "GET",
5897
6046
  "path": "/v1/models",
@@ -5901,6 +6050,7 @@
5901
6050
  "Models"
5902
6051
  ],
5903
6052
  "profiles": [
6053
+ "catalog",
5904
6054
  "core",
5905
6055
  "full"
5906
6056
  ],
@@ -5926,6 +6076,7 @@
5926
6076
  },
5927
6077
  {
5928
6078
  "name": "list_seedance_material_asset_groups",
6079
+ "title": "List Seedance material asset groups",
5929
6080
  "operation_id": "listSeedanceMaterialAssetGroups",
5930
6081
  "method": "GET",
5931
6082
  "path": "/v1/videos/assets/groups",
@@ -5989,6 +6140,7 @@
5989
6140
  },
5990
6141
  {
5991
6142
  "name": "list_seedance_material_assets",
6143
+ "title": "List Seedance material assets",
5992
6144
  "operation_id": "listSeedanceMaterialAssets",
5993
6145
  "method": "GET",
5994
6146
  "path": "/v1/videos/assets",
@@ -6059,6 +6211,7 @@
6059
6211
  },
6060
6212
  {
6061
6213
  "name": "list_seedance_visual_validation_history",
6214
+ "title": "List Seedance real-person verification history",
6062
6215
  "operation_id": "listSeedanceVisualValidationHistory",
6063
6216
  "method": "GET",
6064
6217
  "path": "/v1/videos/assets/visual-validation-sessions",
@@ -6107,6 +6260,7 @@
6107
6260
  },
6108
6261
  {
6109
6262
  "name": "list_volc_compatible_seedance_tasks",
6263
+ "title": "List Seedance tasks (Volc-compatible)",
6110
6264
  "operation_id": "listVolcCompatibleSeedanceTasks",
6111
6265
  "method": "GET",
6112
6266
  "path": "/api/v3/contents/generations/tasks",
@@ -6185,6 +6339,7 @@
6185
6339
  },
6186
6340
  {
6187
6341
  "name": "list_worlds",
6342
+ "title": "List World Labs worlds",
6188
6343
  "operation_id": "listWorlds",
6189
6344
  "method": "POST",
6190
6345
  "path": "/v1/worlds/list",
@@ -6340,6 +6495,7 @@
6340
6495
  },
6341
6496
  {
6342
6497
  "name": "prepare_world_media_asset_upload",
6498
+ "title": "Prepare World Labs media asset upload",
6343
6499
  "operation_id": "prepareWorldMediaAssetUpload",
6344
6500
  "method": "POST",
6345
6501
  "path": "/v1/worlds/media-assets/prepare-upload",
@@ -6419,6 +6575,7 @@
6419
6575
  },
6420
6576
  {
6421
6577
  "name": "rerank_documents",
6578
+ "title": "Rerank documents",
6422
6579
  "operation_id": "rerankDocuments",
6423
6580
  "method": "POST",
6424
6581
  "path": "/v1/rerank",
@@ -6487,6 +6644,7 @@
6487
6644
  },
6488
6645
  {
6489
6646
  "name": "retrieve_anthropic_message_batch",
6647
+ "title": "Retrieve message batch (Anthropic-compatible)",
6490
6648
  "operation_id": "retrieveAnthropicMessageBatch",
6491
6649
  "method": "GET",
6492
6650
  "path": "/v1/messages/batches/{message_batch_id}",
@@ -6530,6 +6688,7 @@
6530
6688
  },
6531
6689
  {
6532
6690
  "name": "retrieve_anthropic_message_batch_results",
6691
+ "title": "Retrieve message batch results (Anthropic-compatible)",
6533
6692
  "operation_id": "retrieveAnthropicMessageBatchResults",
6534
6693
  "method": "GET",
6535
6694
  "path": "/v1/messages/batches/{message_batch_id}/results",
@@ -6573,6 +6732,7 @@
6573
6732
  },
6574
6733
  {
6575
6734
  "name": "retrieve_batch",
6735
+ "title": "Retrieve batch",
6576
6736
  "operation_id": "retrieveBatch",
6577
6737
  "method": "GET",
6578
6738
  "path": "/v1/batches/{batch_id}",
@@ -6615,6 +6775,7 @@
6615
6775
  },
6616
6776
  {
6617
6777
  "name": "retrieve_file",
6778
+ "title": "Retrieve file",
6618
6779
  "operation_id": "retrieveFile",
6619
6780
  "method": "GET",
6620
6781
  "path": "/v1/files/{file_id}",
@@ -6658,6 +6819,7 @@
6658
6819
  },
6659
6820
  {
6660
6821
  "name": "retrieve_file_content",
6822
+ "title": "Retrieve file content",
6661
6823
  "operation_id": "retrieveFileContent",
6662
6824
  "method": "GET",
6663
6825
  "path": "/v1/files/{file_id}/content",
@@ -6701,6 +6863,7 @@
6701
6863
  },
6702
6864
  {
6703
6865
  "name": "retrieve_response",
6866
+ "title": "Retrieve response",
6704
6867
  "operation_id": "retrieveResponse",
6705
6868
  "method": "GET",
6706
6869
  "path": "/v1/responses/{id}",
@@ -6744,6 +6907,7 @@
6744
6907
  },
6745
6908
  {
6746
6909
  "name": "transcribe_audio",
6910
+ "title": "Create transcription",
6747
6911
  "operation_id": "createTranscription",
6748
6912
  "method": "POST",
6749
6913
  "path": "/v1/audio/transcriptions",
@@ -6838,6 +7002,7 @@
6838
7002
  },
6839
7003
  {
6840
7004
  "name": "translate_audio",
7005
+ "title": "Translate audio",
6841
7006
  "operation_id": "createAudioTranslation",
6842
7007
  "method": "POST",
6843
7008
  "path": "/v1/audio/translations",
@@ -6903,6 +7068,7 @@
6903
7068
  },
6904
7069
  {
6905
7070
  "name": "translate_text",
7071
+ "title": "Translate text",
6906
7072
  "operation_id": "createTranslation",
6907
7073
  "method": "POST",
6908
7074
  "path": "/v1/translations",
@@ -6972,6 +7138,7 @@
6972
7138
  },
6973
7139
  {
6974
7140
  "name": "update_seedance_material_asset",
7141
+ "title": "Update Seedance material asset",
6975
7142
  "operation_id": "updateSeedanceMaterialAsset",
6976
7143
  "method": "PUT",
6977
7144
  "path": "/v1/videos/assets/{assetId}",
@@ -7051,6 +7218,7 @@
7051
7218
  },
7052
7219
  {
7053
7220
  "name": "update_seedance_material_asset_group",
7221
+ "title": "Update Seedance material asset group",
7054
7222
  "operation_id": "updateSeedanceMaterialAssetGroup",
7055
7223
  "method": "PUT",
7056
7224
  "path": "/v1/videos/assets/groups/{groupId}",
@@ -7124,6 +7292,7 @@
7124
7292
  },
7125
7293
  {
7126
7294
  "name": "upload_file",
7295
+ "title": "Upload file",
7127
7296
  "operation_id": "uploadFile",
7128
7297
  "method": "POST",
7129
7298
  "path": "/v1/files",