@apteva/integrations 0.15.9 → 0.15.11
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.
- package/dist/http-executor.d.ts.map +1 -1
- package/dist/http-executor.js +62 -8
- package/dist/http-executor.js.map +1 -1
- package/dist/mcp-generator.js +24 -0
- package/dist/mcp-generator.js.map +1 -1
- package/dist/types.d.ts +4 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/apps/anthropic-admin.json +183 -0
- package/src/apps/apify.json +168 -0
- package/src/apps/aws-ses.json +1 -1
- package/src/apps/bookvault.json +309 -0
- package/src/apps/braintree.json +53 -0
- package/src/apps/brightdata.json +22 -1
- package/src/apps/browse-ai.json +243 -5
- package/src/apps/browserbase.json +41 -11
- package/src/apps/browserless.json +101 -0
- package/src/apps/bunny-stream.json +50 -28
- package/src/apps/ccbill.json +142 -0
- package/src/apps/close.json +238 -301
- package/src/apps/craftcloud.json +251 -202
- package/src/apps/dataforseo.json +1700 -2
- package/src/apps/deepgram.json +288 -1
- package/src/apps/digitalocean.json +53 -0
- package/src/apps/elevenlabs.json +292 -0
- package/src/apps/firecrawl.json +111 -0
- package/src/apps/gladia.json +158 -0
- package/src/apps/gmail.json +2 -5
- package/src/apps/gumroad.json +569 -0
- package/src/apps/imaterialise.json +171 -262
- package/src/apps/ingram-coresource.json +119 -0
- package/src/apps/jlcpcb.json +43 -0
- package/src/apps/jungle-scout.json +166 -0
- package/src/apps/ko-fi.json +34 -0
- package/src/apps/lemon-squeezy.json +270 -0
- package/src/apps/lulu-print.json +266 -0
- package/src/apps/mollie.json +219 -0
- package/src/apps/paddle.json +199 -9
- package/src/apps/payhip.json +162 -0
- package/src/apps/paystack.json +207 -0
- package/src/apps/pipedrive.json +221 -212
- package/src/apps/publishdrive.json +132 -0
- package/src/apps/razorpay.json +207 -0
- package/src/apps/ringover.json +69 -0
- package/src/apps/runpod.json +727 -0
- package/src/apps/salesforce-crm.json +192 -233
- package/src/apps/sculpteo.json +98 -180
- package/src/apps/segpay.json +215 -0
- package/src/apps/shapeways.json +114 -136
- package/src/apps/slant3d.json +260 -168
- package/src/apps/soniox.json +194 -0
- package/src/apps/speechmatics.json +167 -0
- package/src/apps/streetlib.json +60 -0
- package/src/apps/stripe.json +1 -0
- package/src/apps/surfer.json +511 -0
- package/src/apps/twitter-api.json +14 -1
- package/src/apps/verotel.json +124 -0
- package/src/apps/whop.json +364 -0
- package/src/apps/zendesk-sell.json +248 -0
- package/src/apps/zendesk.json +190 -259
package/src/apps/deepgram.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
{
|
|
15
15
|
"name": "api_key",
|
|
16
16
|
"label": "Deepgram API Key",
|
|
17
|
-
"description": "Create one at https://console.deepgram.com/project/default/keys
|
|
17
|
+
"description": "Create one at https://console.deepgram.com/project/default/keys. Speech calls need the normal request scopes; reporting tools need usage:read, and billing/balance/purchase tools need billing:read."
|
|
18
18
|
}
|
|
19
19
|
]
|
|
20
20
|
},
|
|
@@ -345,6 +345,293 @@
|
|
|
345
345
|
},
|
|
346
346
|
"required": ["project_id", "model_id"]
|
|
347
347
|
}
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "get_usage",
|
|
351
|
+
"description": "Get raw Deepgram usage records for a project over a date range. Use this for detailed request-level usage auditing before summarizing cost. Dates use YYYY-MM-DD. Start with list_usage_fields to discover valid models, tags, features, and processing methods.",
|
|
352
|
+
"method": "GET",
|
|
353
|
+
"path": "/v1/projects/{project_id}/usage",
|
|
354
|
+
"timeout_ms": 60000,
|
|
355
|
+
"input_schema": {
|
|
356
|
+
"type": "object",
|
|
357
|
+
"properties": {
|
|
358
|
+
"project_id": {
|
|
359
|
+
"type": "string",
|
|
360
|
+
"description": "Target project id from list_projects."
|
|
361
|
+
},
|
|
362
|
+
"start": {
|
|
363
|
+
"type": "string",
|
|
364
|
+
"description": "Start date, YYYY-MM-DD."
|
|
365
|
+
},
|
|
366
|
+
"end": {
|
|
367
|
+
"type": "string",
|
|
368
|
+
"description": "End date, YYYY-MM-DD."
|
|
369
|
+
},
|
|
370
|
+
"accessor": {
|
|
371
|
+
"type": "string",
|
|
372
|
+
"description": "Filter by accessor UUID."
|
|
373
|
+
},
|
|
374
|
+
"deployment": {
|
|
375
|
+
"type": "string",
|
|
376
|
+
"description": "Filter by deployment type such as hosted, beta, self-hosted, or dedicated."
|
|
377
|
+
},
|
|
378
|
+
"endpoint": {
|
|
379
|
+
"type": "string",
|
|
380
|
+
"description": "Filter by API endpoint."
|
|
381
|
+
},
|
|
382
|
+
"method": {
|
|
383
|
+
"type": "string",
|
|
384
|
+
"description": "Filter by processing method, for example sync, async, or streaming."
|
|
385
|
+
},
|
|
386
|
+
"model": {
|
|
387
|
+
"type": "string",
|
|
388
|
+
"description": "Filter by model id."
|
|
389
|
+
},
|
|
390
|
+
"tag": {
|
|
391
|
+
"type": "string",
|
|
392
|
+
"description": "Filter by request tag."
|
|
393
|
+
},
|
|
394
|
+
"language": {
|
|
395
|
+
"type": "string",
|
|
396
|
+
"description": "Filter by language code."
|
|
397
|
+
},
|
|
398
|
+
"punctuate": {
|
|
399
|
+
"type": "boolean",
|
|
400
|
+
"description": "Filter by whether punctuate was enabled."
|
|
401
|
+
},
|
|
402
|
+
"smart_format": {
|
|
403
|
+
"type": "boolean",
|
|
404
|
+
"description": "Filter by whether smart_format was enabled."
|
|
405
|
+
},
|
|
406
|
+
"diarize": {
|
|
407
|
+
"type": "boolean",
|
|
408
|
+
"description": "Filter by whether diarize was enabled."
|
|
409
|
+
},
|
|
410
|
+
"detect_language": {
|
|
411
|
+
"type": "boolean",
|
|
412
|
+
"description": "Filter by whether language detection was enabled."
|
|
413
|
+
},
|
|
414
|
+
"summarize": {
|
|
415
|
+
"type": "string",
|
|
416
|
+
"description": "Filter by summarization setting."
|
|
417
|
+
},
|
|
418
|
+
"topics": {
|
|
419
|
+
"type": "boolean",
|
|
420
|
+
"description": "Filter by whether topic detection was enabled."
|
|
421
|
+
},
|
|
422
|
+
"intents": {
|
|
423
|
+
"type": "boolean",
|
|
424
|
+
"description": "Filter by whether intent detection was enabled."
|
|
425
|
+
},
|
|
426
|
+
"sentiment": {
|
|
427
|
+
"type": "boolean",
|
|
428
|
+
"description": "Filter by whether sentiment analysis was enabled."
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
"required": ["project_id"]
|
|
432
|
+
},
|
|
433
|
+
"query_params": ["start", "end", "accessor", "deployment", "endpoint", "method", "model", "tag", "language", "punctuate", "smart_format", "diarize", "detect_language", "summarize", "topics", "intents", "sentiment"]
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"name": "get_usage_breakdown",
|
|
437
|
+
"description": "Aggregate Deepgram usage for a project by fields such as accessor, endpoint, feature_set, models, method, tags, and deployment. Use this to answer questions like which models or tags drove usage this month.",
|
|
438
|
+
"method": "GET",
|
|
439
|
+
"path": "/v1/projects/{project_id}/usage/breakdown",
|
|
440
|
+
"timeout_ms": 60000,
|
|
441
|
+
"input_schema": {
|
|
442
|
+
"type": "object",
|
|
443
|
+
"properties": {
|
|
444
|
+
"project_id": {
|
|
445
|
+
"type": "string",
|
|
446
|
+
"description": "Target project id from list_projects."
|
|
447
|
+
},
|
|
448
|
+
"start": {
|
|
449
|
+
"type": "string",
|
|
450
|
+
"description": "Start date, YYYY-MM-DD."
|
|
451
|
+
},
|
|
452
|
+
"end": {
|
|
453
|
+
"type": "string",
|
|
454
|
+
"description": "End date, YYYY-MM-DD."
|
|
455
|
+
},
|
|
456
|
+
"grouping": {
|
|
457
|
+
"type": "array",
|
|
458
|
+
"description": "Fields to group by. Official values: accessor, endpoint, feature_set, models, method, tags, deployment.",
|
|
459
|
+
"items": {
|
|
460
|
+
"type": "string",
|
|
461
|
+
"enum": ["accessor", "endpoint", "feature_set", "models", "method", "tags", "deployment"]
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
"accessor": {
|
|
465
|
+
"type": "string",
|
|
466
|
+
"description": "Filter by accessor UUID."
|
|
467
|
+
},
|
|
468
|
+
"deployment": {
|
|
469
|
+
"type": "string",
|
|
470
|
+
"description": "Filter by deployment type."
|
|
471
|
+
},
|
|
472
|
+
"endpoint": {
|
|
473
|
+
"type": "string",
|
|
474
|
+
"description": "Filter by API endpoint."
|
|
475
|
+
},
|
|
476
|
+
"method": {
|
|
477
|
+
"type": "string",
|
|
478
|
+
"description": "Filter by processing method."
|
|
479
|
+
},
|
|
480
|
+
"model": {
|
|
481
|
+
"type": "string",
|
|
482
|
+
"description": "Filter by model id."
|
|
483
|
+
},
|
|
484
|
+
"tag": {
|
|
485
|
+
"type": "string",
|
|
486
|
+
"description": "Filter by request tag."
|
|
487
|
+
},
|
|
488
|
+
"language": {
|
|
489
|
+
"type": "string",
|
|
490
|
+
"description": "Filter by language code."
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
"required": ["project_id"]
|
|
494
|
+
},
|
|
495
|
+
"query_params": ["start", "end", "grouping", "accessor", "deployment", "endpoint", "method", "model", "tag", "language"]
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"name": "list_usage_fields",
|
|
499
|
+
"description": "List usage filter fields available for a project in a date range: tags, models, processing methods, and features. Call this before get_usage or get_usage_breakdown when an agent needs valid filter values.",
|
|
500
|
+
"method": "GET",
|
|
501
|
+
"path": "/v1/projects/{project_id}/usage/fields",
|
|
502
|
+
"input_schema": {
|
|
503
|
+
"type": "object",
|
|
504
|
+
"properties": {
|
|
505
|
+
"project_id": {
|
|
506
|
+
"type": "string",
|
|
507
|
+
"description": "Target project id from list_projects."
|
|
508
|
+
},
|
|
509
|
+
"start": {
|
|
510
|
+
"type": "string",
|
|
511
|
+
"description": "Start date, YYYY-MM-DD."
|
|
512
|
+
},
|
|
513
|
+
"end": {
|
|
514
|
+
"type": "string",
|
|
515
|
+
"description": "End date, YYYY-MM-DD."
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
"required": ["project_id"]
|
|
519
|
+
},
|
|
520
|
+
"query_params": ["start", "end"]
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"name": "get_billing_breakdown",
|
|
524
|
+
"description": "Get Deepgram billing cost breakdown for a project. Results include USD dollar amounts, so this is the primary tool for questions like 'how much did Deepgram cost this month?' Use start/end dates in YYYY-MM-DD and optional grouping such as accessor, deployment, line_item, or tags.",
|
|
525
|
+
"method": "GET",
|
|
526
|
+
"path": "/v1/projects/{project_id}/billing/breakdown",
|
|
527
|
+
"timeout_ms": 60000,
|
|
528
|
+
"input_schema": {
|
|
529
|
+
"type": "object",
|
|
530
|
+
"properties": {
|
|
531
|
+
"project_id": {
|
|
532
|
+
"type": "string",
|
|
533
|
+
"description": "Target project id from list_projects."
|
|
534
|
+
},
|
|
535
|
+
"start": {
|
|
536
|
+
"type": "string",
|
|
537
|
+
"description": "Start date, YYYY-MM-DD."
|
|
538
|
+
},
|
|
539
|
+
"end": {
|
|
540
|
+
"type": "string",
|
|
541
|
+
"description": "End date, YYYY-MM-DD."
|
|
542
|
+
},
|
|
543
|
+
"grouping": {
|
|
544
|
+
"type": "array",
|
|
545
|
+
"description": "Fields to group by. Official values include accessor, deployment, line_item, and tags.",
|
|
546
|
+
"items": {
|
|
547
|
+
"type": "string",
|
|
548
|
+
"enum": ["accessor", "deployment", "line_item", "tags"]
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
"accessor": {
|
|
552
|
+
"type": "string",
|
|
553
|
+
"description": "Filter by accessor UUID."
|
|
554
|
+
},
|
|
555
|
+
"deployment": {
|
|
556
|
+
"type": "string",
|
|
557
|
+
"description": "Filter by deployment type."
|
|
558
|
+
},
|
|
559
|
+
"tag": {
|
|
560
|
+
"type": "string",
|
|
561
|
+
"description": "Filter by billing tag."
|
|
562
|
+
},
|
|
563
|
+
"line_item": {
|
|
564
|
+
"type": "string",
|
|
565
|
+
"description": "Filter by billing line item."
|
|
566
|
+
}
|
|
567
|
+
},
|
|
568
|
+
"required": ["project_id"]
|
|
569
|
+
},
|
|
570
|
+
"query_params": ["start", "end", "grouping", "accessor", "deployment", "tag", "line_item"]
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"name": "list_billing_fields",
|
|
574
|
+
"description": "List billing filter fields available for a project in a date range: accessors, deployments, tags, and line_items. Use this to discover valid filters before get_billing_breakdown.",
|
|
575
|
+
"method": "GET",
|
|
576
|
+
"path": "/v1/projects/{project_id}/billing/fields",
|
|
577
|
+
"input_schema": {
|
|
578
|
+
"type": "object",
|
|
579
|
+
"properties": {
|
|
580
|
+
"project_id": {
|
|
581
|
+
"type": "string",
|
|
582
|
+
"description": "Target project id from list_projects."
|
|
583
|
+
},
|
|
584
|
+
"start": {
|
|
585
|
+
"type": "string",
|
|
586
|
+
"description": "Start date, YYYY-MM-DD."
|
|
587
|
+
},
|
|
588
|
+
"end": {
|
|
589
|
+
"type": "string",
|
|
590
|
+
"description": "End date, YYYY-MM-DD."
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
"required": ["project_id"]
|
|
594
|
+
},
|
|
595
|
+
"query_params": ["start", "end"]
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"name": "list_balances",
|
|
599
|
+
"description": "List outstanding Deepgram balances for a project, including amount, units, balance_id, and purchase_order_id.",
|
|
600
|
+
"method": "GET",
|
|
601
|
+
"path": "/v1/projects/{project_id}/balances",
|
|
602
|
+
"input_schema": {
|
|
603
|
+
"type": "object",
|
|
604
|
+
"properties": {
|
|
605
|
+
"project_id": {
|
|
606
|
+
"type": "string",
|
|
607
|
+
"description": "Target project id from list_projects."
|
|
608
|
+
}
|
|
609
|
+
},
|
|
610
|
+
"required": ["project_id"]
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"name": "list_purchases",
|
|
615
|
+
"description": "List Deepgram project purchases and order transactions, including amount, units, created date, expiration, order_id, and order_type.",
|
|
616
|
+
"method": "GET",
|
|
617
|
+
"path": "/v1/projects/{project_id}/purchases",
|
|
618
|
+
"input_schema": {
|
|
619
|
+
"type": "object",
|
|
620
|
+
"properties": {
|
|
621
|
+
"project_id": {
|
|
622
|
+
"type": "string",
|
|
623
|
+
"description": "Target project id from list_projects."
|
|
624
|
+
},
|
|
625
|
+
"limit": {
|
|
626
|
+
"type": "integer",
|
|
627
|
+
"description": "Number of purchases to return. Default 10, maximum 1000.",
|
|
628
|
+
"minimum": 1,
|
|
629
|
+
"maximum": 1000
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"required": ["project_id"]
|
|
633
|
+
},
|
|
634
|
+
"query_params": ["limit"]
|
|
348
635
|
}
|
|
349
636
|
]
|
|
350
637
|
}
|
|
@@ -26,6 +26,58 @@
|
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
|
+
{
|
|
30
|
+
"name": "get_droplet",
|
|
31
|
+
"description": "Get one droplet by ID",
|
|
32
|
+
"method": "GET",
|
|
33
|
+
"path": "/droplets/{droplet_id}",
|
|
34
|
+
"input_schema": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"properties": { "droplet_id": { "type": "string" } },
|
|
37
|
+
"required": ["droplet_id"]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "list_sizes",
|
|
42
|
+
"description": "List available Droplet sizes",
|
|
43
|
+
"method": "GET",
|
|
44
|
+
"path": "/sizes",
|
|
45
|
+
"input_schema": {
|
|
46
|
+
"type": "object",
|
|
47
|
+
"properties": {
|
|
48
|
+
"page": { "type": "number" },
|
|
49
|
+
"per_page": { "type": "number" }
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "list_regions",
|
|
55
|
+
"description": "List available DigitalOcean regions",
|
|
56
|
+
"method": "GET",
|
|
57
|
+
"path": "/regions",
|
|
58
|
+
"input_schema": {
|
|
59
|
+
"type": "object",
|
|
60
|
+
"properties": {
|
|
61
|
+
"page": { "type": "number" },
|
|
62
|
+
"per_page": { "type": "number" }
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "list_images",
|
|
68
|
+
"description": "List available DigitalOcean images",
|
|
69
|
+
"method": "GET",
|
|
70
|
+
"path": "/images",
|
|
71
|
+
"input_schema": {
|
|
72
|
+
"type": "object",
|
|
73
|
+
"properties": {
|
|
74
|
+
"type": { "type": "string" },
|
|
75
|
+
"public": { "type": "boolean" },
|
|
76
|
+
"page": { "type": "number" },
|
|
77
|
+
"per_page": { "type": "number" }
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
},
|
|
29
81
|
{
|
|
30
82
|
"name": "create_droplet",
|
|
31
83
|
"description": "Create a droplet",
|
|
@@ -39,6 +91,7 @@
|
|
|
39
91
|
"size": { "type": "string" },
|
|
40
92
|
"image": { "type": "string" },
|
|
41
93
|
"ssh_keys": { "type": "array" },
|
|
94
|
+
"user_data": { "type": "string" },
|
|
42
95
|
"backups": { "type": "boolean" }
|
|
43
96
|
},
|
|
44
97
|
"required": ["name", "region", "size", "image"]
|
package/src/apps/elevenlabs.json
CHANGED
|
@@ -84,6 +84,22 @@
|
|
|
84
84
|
"type": "string",
|
|
85
85
|
"description": "Next text for continuity across chunks."
|
|
86
86
|
},
|
|
87
|
+
"previous_request_ids": {
|
|
88
|
+
"type": "array",
|
|
89
|
+
"items": {
|
|
90
|
+
"type": "string"
|
|
91
|
+
},
|
|
92
|
+
"maxItems": 3,
|
|
93
|
+
"description": "Up to three previous ElevenLabs generation request IDs for request-stitching continuity. Not supported by eleven_v3."
|
|
94
|
+
},
|
|
95
|
+
"next_request_ids": {
|
|
96
|
+
"type": "array",
|
|
97
|
+
"items": {
|
|
98
|
+
"type": "string"
|
|
99
|
+
},
|
|
100
|
+
"maxItems": 3,
|
|
101
|
+
"description": "Up to three following ElevenLabs generation request IDs for request-stitching continuity when regenerating a middle segment. Not supported by eleven_v3."
|
|
102
|
+
},
|
|
87
103
|
"apply_text_normalization": {
|
|
88
104
|
"type": "string",
|
|
89
105
|
"enum": [
|
|
@@ -505,6 +521,282 @@
|
|
|
505
521
|
]
|
|
506
522
|
}
|
|
507
523
|
},
|
|
524
|
+
{
|
|
525
|
+
"name": "design_voice",
|
|
526
|
+
"description": "Generate reusable voice preview candidates from a text description using ElevenLabs Voice Design. Returns previews with generated_voice_id values; save the preferred one with create_voice_from_preview.",
|
|
527
|
+
"method": "POST",
|
|
528
|
+
"path": "/text-to-voice/design",
|
|
529
|
+
"timeout_ms": 180000,
|
|
530
|
+
"query_params": [
|
|
531
|
+
"output_format"
|
|
532
|
+
],
|
|
533
|
+
"input_schema": {
|
|
534
|
+
"type": "object",
|
|
535
|
+
"properties": {
|
|
536
|
+
"voice_description": {
|
|
537
|
+
"type": "string",
|
|
538
|
+
"minLength": 20,
|
|
539
|
+
"maxLength": 1000,
|
|
540
|
+
"description": "Description of the voice to create, including age, gender, accent, tone, pacing, and audio quality."
|
|
541
|
+
},
|
|
542
|
+
"model_id": {
|
|
543
|
+
"type": "string",
|
|
544
|
+
"enum": [
|
|
545
|
+
"eleven_ttv_v3",
|
|
546
|
+
"eleven_multilingual_ttv_v2"
|
|
547
|
+
],
|
|
548
|
+
"default": "eleven_ttv_v3",
|
|
549
|
+
"description": "ElevenLabs Voice Design model. Use eleven_ttv_v3 for the newer expressive voice design model, or eleven_multilingual_ttv_v2 for the previous multilingual voice design model."
|
|
550
|
+
},
|
|
551
|
+
"text": {
|
|
552
|
+
"type": "string",
|
|
553
|
+
"minLength": 100,
|
|
554
|
+
"maxLength": 1000,
|
|
555
|
+
"description": "Optional preview text. If omitted, set auto_generate_text=true."
|
|
556
|
+
},
|
|
557
|
+
"auto_generate_text": {
|
|
558
|
+
"type": "boolean",
|
|
559
|
+
"default": false,
|
|
560
|
+
"description": "Ask ElevenLabs to generate suitable preview text for the voice description."
|
|
561
|
+
},
|
|
562
|
+
"loudness": {
|
|
563
|
+
"type": "number",
|
|
564
|
+
"minimum": -1,
|
|
565
|
+
"maximum": 1,
|
|
566
|
+
"default": 0.5,
|
|
567
|
+
"description": "Preview loudness control. -1 is quietest, 1 is loudest."
|
|
568
|
+
},
|
|
569
|
+
"quality": {
|
|
570
|
+
"type": "number",
|
|
571
|
+
"minimum": -1,
|
|
572
|
+
"maximum": 1,
|
|
573
|
+
"default": 0.9,
|
|
574
|
+
"description": "Higher quality improves output but reduces variety."
|
|
575
|
+
},
|
|
576
|
+
"seed": {
|
|
577
|
+
"type": "integer",
|
|
578
|
+
"minimum": 0,
|
|
579
|
+
"maximum": 2147483647,
|
|
580
|
+
"description": "Optional deterministic seed."
|
|
581
|
+
},
|
|
582
|
+
"guidance_scale": {
|
|
583
|
+
"type": "number",
|
|
584
|
+
"minimum": 0,
|
|
585
|
+
"maximum": 100,
|
|
586
|
+
"default": 5,
|
|
587
|
+
"description": "How closely the model follows the prompt."
|
|
588
|
+
},
|
|
589
|
+
"should_enhance": {
|
|
590
|
+
"type": "boolean",
|
|
591
|
+
"default": false,
|
|
592
|
+
"description": "Enhance the voice description with AI before generating previews."
|
|
593
|
+
},
|
|
594
|
+
"output_format": {
|
|
595
|
+
"type": "string",
|
|
596
|
+
"default": "mp3_44100_128",
|
|
597
|
+
"description": "Preview audio output format."
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"required": [
|
|
601
|
+
"voice_description"
|
|
602
|
+
]
|
|
603
|
+
}
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"name": "create_voice_from_preview",
|
|
607
|
+
"description": "Save a generated Voice Design or remix preview as a reusable ElevenLabs voice. Use generated_voice_id from design_voice or remix_voice.",
|
|
608
|
+
"method": "POST",
|
|
609
|
+
"path": "/text-to-voice",
|
|
610
|
+
"timeout_ms": 60000,
|
|
611
|
+
"input_schema": {
|
|
612
|
+
"type": "object",
|
|
613
|
+
"properties": {
|
|
614
|
+
"voice_name": {
|
|
615
|
+
"type": "string",
|
|
616
|
+
"description": "Name for the new saved voice."
|
|
617
|
+
},
|
|
618
|
+
"voice_description": {
|
|
619
|
+
"type": "string",
|
|
620
|
+
"minLength": 20,
|
|
621
|
+
"maxLength": 1000,
|
|
622
|
+
"description": "Description for the saved voice."
|
|
623
|
+
},
|
|
624
|
+
"generated_voice_id": {
|
|
625
|
+
"type": "string",
|
|
626
|
+
"description": "Generated preview voice id returned by design_voice or remix_voice."
|
|
627
|
+
},
|
|
628
|
+
"labels": {
|
|
629
|
+
"type": "object",
|
|
630
|
+
"additionalProperties": {
|
|
631
|
+
"type": "string"
|
|
632
|
+
},
|
|
633
|
+
"description": "Optional metadata labels, for example language, accent, gender, age, or use_case."
|
|
634
|
+
},
|
|
635
|
+
"played_not_selected_voice_ids": {
|
|
636
|
+
"type": "array",
|
|
637
|
+
"items": {
|
|
638
|
+
"type": "string"
|
|
639
|
+
},
|
|
640
|
+
"description": "Optional generated voice ids the user previewed but did not select."
|
|
641
|
+
}
|
|
642
|
+
},
|
|
643
|
+
"required": [
|
|
644
|
+
"voice_name",
|
|
645
|
+
"voice_description",
|
|
646
|
+
"generated_voice_id"
|
|
647
|
+
]
|
|
648
|
+
}
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"name": "remix_voice",
|
|
652
|
+
"description": "Generate voice preview candidates by remixing an existing ElevenLabs voice with a text prompt. Save the preferred generated_voice_id with create_voice_from_preview.",
|
|
653
|
+
"method": "POST",
|
|
654
|
+
"path": "/text-to-voice/{voice_id}/remix",
|
|
655
|
+
"timeout_ms": 180000,
|
|
656
|
+
"query_params": [
|
|
657
|
+
"output_format"
|
|
658
|
+
],
|
|
659
|
+
"input_schema": {
|
|
660
|
+
"type": "object",
|
|
661
|
+
"properties": {
|
|
662
|
+
"voice_id": {
|
|
663
|
+
"type": "string",
|
|
664
|
+
"description": "Existing voice id to remix."
|
|
665
|
+
},
|
|
666
|
+
"voice_description": {
|
|
667
|
+
"type": "string",
|
|
668
|
+
"minLength": 5,
|
|
669
|
+
"maxLength": 1000,
|
|
670
|
+
"description": "Description of the changes to make to the voice."
|
|
671
|
+
},
|
|
672
|
+
"text": {
|
|
673
|
+
"type": "string",
|
|
674
|
+
"minLength": 100,
|
|
675
|
+
"maxLength": 1000,
|
|
676
|
+
"description": "Optional preview text."
|
|
677
|
+
},
|
|
678
|
+
"auto_generate_text": {
|
|
679
|
+
"type": "boolean",
|
|
680
|
+
"default": false
|
|
681
|
+
},
|
|
682
|
+
"loudness": {
|
|
683
|
+
"type": "number",
|
|
684
|
+
"minimum": -1,
|
|
685
|
+
"maximum": 1,
|
|
686
|
+
"default": 0.5
|
|
687
|
+
},
|
|
688
|
+
"seed": {
|
|
689
|
+
"type": "integer",
|
|
690
|
+
"minimum": 0,
|
|
691
|
+
"maximum": 2147483647
|
|
692
|
+
},
|
|
693
|
+
"guidance_scale": {
|
|
694
|
+
"type": "number",
|
|
695
|
+
"minimum": 0,
|
|
696
|
+
"maximum": 100,
|
|
697
|
+
"default": 2
|
|
698
|
+
},
|
|
699
|
+
"stream_previews": {
|
|
700
|
+
"type": "boolean",
|
|
701
|
+
"default": false,
|
|
702
|
+
"description": "When true, return generated IDs without inline preview audio."
|
|
703
|
+
},
|
|
704
|
+
"remixing_session_id": {
|
|
705
|
+
"type": "string"
|
|
706
|
+
},
|
|
707
|
+
"remixing_session_iteration_id": {
|
|
708
|
+
"type": "string"
|
|
709
|
+
},
|
|
710
|
+
"prompt_strength": {
|
|
711
|
+
"type": "number",
|
|
712
|
+
"minimum": 0,
|
|
713
|
+
"maximum": 1,
|
|
714
|
+
"description": "Balance prompt versus reference audio when supported by the selected model."
|
|
715
|
+
},
|
|
716
|
+
"output_format": {
|
|
717
|
+
"type": "string",
|
|
718
|
+
"default": "mp3_44100_128"
|
|
719
|
+
}
|
|
720
|
+
},
|
|
721
|
+
"required": [
|
|
722
|
+
"voice_id",
|
|
723
|
+
"voice_description"
|
|
724
|
+
]
|
|
725
|
+
}
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"name": "stream_voice_preview",
|
|
729
|
+
"description": "Stream/download the audio preview for a generated_voice_id returned by design_voice or remix_voice. Returns binary audio.",
|
|
730
|
+
"method": "GET",
|
|
731
|
+
"path": "/text-to-voice/{generated_voice_id}/stream",
|
|
732
|
+
"timeout_ms": 60000,
|
|
733
|
+
"input_schema": {
|
|
734
|
+
"type": "object",
|
|
735
|
+
"properties": {
|
|
736
|
+
"generated_voice_id": {
|
|
737
|
+
"type": "string",
|
|
738
|
+
"description": "Generated preview voice id."
|
|
739
|
+
}
|
|
740
|
+
},
|
|
741
|
+
"required": [
|
|
742
|
+
"generated_voice_id"
|
|
743
|
+
]
|
|
744
|
+
}
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"name": "create_ivc_voice",
|
|
748
|
+
"description": "Create an Instant Voice Clone from one or more audio samples and add it to ElevenLabs Voices. Requires multipart/form-data executor support; until that is available, prefer design_voice/create_voice_from_preview.",
|
|
749
|
+
"method": "POST",
|
|
750
|
+
"path": "/voices/add",
|
|
751
|
+
"timeout_ms": 180000,
|
|
752
|
+
"multipart_form": {
|
|
753
|
+
"file_fields": {
|
|
754
|
+
"files": "files[]"
|
|
755
|
+
},
|
|
756
|
+
"field_names": [
|
|
757
|
+
"name",
|
|
758
|
+
"description",
|
|
759
|
+
"labels",
|
|
760
|
+
"remove_background_noise"
|
|
761
|
+
]
|
|
762
|
+
},
|
|
763
|
+
"input_schema": {
|
|
764
|
+
"type": "object",
|
|
765
|
+
"properties": {
|
|
766
|
+
"name": {
|
|
767
|
+
"type": "string",
|
|
768
|
+
"description": "Name for the cloned voice."
|
|
769
|
+
},
|
|
770
|
+
"files": {
|
|
771
|
+
"type": "array",
|
|
772
|
+
"items": {
|
|
773
|
+
"type": "string"
|
|
774
|
+
},
|
|
775
|
+
"description": "Audio sample files as blobref:// handles, runtime binary envelopes, base64 strings, or storage-resolved files once multipart support is enabled."
|
|
776
|
+
},
|
|
777
|
+
"description": {
|
|
778
|
+
"type": "string",
|
|
779
|
+
"description": "Optional description of the voice."
|
|
780
|
+
},
|
|
781
|
+
"remove_background_noise": {
|
|
782
|
+
"type": "boolean",
|
|
783
|
+
"default": false,
|
|
784
|
+
"description": "Remove background noise from samples before cloning."
|
|
785
|
+
},
|
|
786
|
+
"labels": {
|
|
787
|
+
"type": "object",
|
|
788
|
+
"additionalProperties": {
|
|
789
|
+
"type": "string"
|
|
790
|
+
},
|
|
791
|
+
"description": "Optional labels such as language, accent, gender, or age."
|
|
792
|
+
}
|
|
793
|
+
},
|
|
794
|
+
"required": [
|
|
795
|
+
"name",
|
|
796
|
+
"files"
|
|
797
|
+
]
|
|
798
|
+
}
|
|
799
|
+
},
|
|
508
800
|
{
|
|
509
801
|
"name": "list_models",
|
|
510
802
|
"description": "List ElevenLabs models, including flags such as can_do_text_to_speech and model rate metadata.",
|