@apteva/integrations 0.15.8 → 0.15.10
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/package.json +1 -1
- package/src/apps/apify.json +705 -70
- package/src/apps/bookvault.json +309 -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/dataforseo.json +1 -0
- package/src/apps/digitalocean.json +53 -0
- package/src/apps/elevenlabs.json +283 -0
- package/src/apps/firecrawl.json +111 -0
- package/src/apps/ingram-coresource.json +119 -0
- package/src/apps/lulu-print.json +266 -0
- package/src/apps/publishdrive.json +132 -0
- package/src/apps/streetlib.json +60 -0
|
@@ -16,6 +16,38 @@
|
|
|
16
16
|
]
|
|
17
17
|
},
|
|
18
18
|
"tools": [
|
|
19
|
+
{
|
|
20
|
+
"name": "fetch",
|
|
21
|
+
"description": "Fetch a page through Browserbase without starting a full browser session. Returns status, headers, content, contentType, and encoding. Use format='markdown' for agent-ready page text or format='json' with schema for structured extraction.",
|
|
22
|
+
"method": "POST",
|
|
23
|
+
"path": "/v1/fetch",
|
|
24
|
+
"input_schema": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"properties": {
|
|
27
|
+
"url": { "type": "string", "description": "URL to fetch" },
|
|
28
|
+
"allowRedirects": { "type": "boolean", "default": false },
|
|
29
|
+
"allowInsecureSsl": { "type": "boolean", "default": false },
|
|
30
|
+
"proxies": { "type": "boolean", "default": false },
|
|
31
|
+
"format": { "type": "string", "enum": ["raw", "markdown", "json"], "default": "raw" },
|
|
32
|
+
"schema": { "type": "object", "description": "JSON Schema used when format='json'" }
|
|
33
|
+
},
|
|
34
|
+
"required": ["url"]
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "search",
|
|
39
|
+
"description": "Search the web through Browserbase and return compact structured results. Use before opening a browser session when you only need candidate URLs.",
|
|
40
|
+
"method": "POST",
|
|
41
|
+
"path": "/v1/search",
|
|
42
|
+
"input_schema": {
|
|
43
|
+
"type": "object",
|
|
44
|
+
"properties": {
|
|
45
|
+
"query": { "type": "string", "description": "Search query, 1-200 characters" },
|
|
46
|
+
"numResults": { "type": "integer", "default": 10, "description": "Number of results to return, 1-25" }
|
|
47
|
+
},
|
|
48
|
+
"required": ["query"]
|
|
49
|
+
}
|
|
50
|
+
},
|
|
19
51
|
{
|
|
20
52
|
"name": "create_session",
|
|
21
53
|
"description": "Create a new browser session. Returns `{id, connectUrl, seleniumRemoteUrl, ...}` — use `connectUrl` to connect via Playwright/Puppeteer over CDP and drive the browser (take screenshots, click, type, etc.). Sessions idle out after ~5 min unless `keepAlive=true`.",
|
|
@@ -65,8 +97,7 @@
|
|
|
65
97
|
"region": { "type": "string", "enum": ["us-west-2", "us-east-1", "eu-central-1", "ap-southeast-1"], "description": "Geographic region to run the browser in" },
|
|
66
98
|
"timeout": { "type": "integer", "description": "Max session duration in seconds" },
|
|
67
99
|
"userMetadata": { "type": "object", "description": "Arbitrary key/values attached to the session" }
|
|
68
|
-
}
|
|
69
|
-
"required": ["projectId"]
|
|
100
|
+
}
|
|
70
101
|
}
|
|
71
102
|
},
|
|
72
103
|
{
|
|
@@ -197,17 +228,16 @@
|
|
|
197
228
|
"path_params": ["id"]
|
|
198
229
|
},
|
|
199
230
|
{
|
|
200
|
-
"name": "
|
|
201
|
-
"description": "
|
|
202
|
-
"method": "
|
|
203
|
-
"path": "/v1/
|
|
231
|
+
"name": "delete_context",
|
|
232
|
+
"description": "Delete a persisted context.",
|
|
233
|
+
"method": "DELETE",
|
|
234
|
+
"path": "/v1/contexts/{id}",
|
|
204
235
|
"input_schema": {
|
|
205
236
|
"type": "object",
|
|
206
|
-
"properties": {
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
}
|
|
237
|
+
"properties": { "id": { "type": "string" } },
|
|
238
|
+
"required": ["id"]
|
|
239
|
+
},
|
|
240
|
+
"path_params": ["id"]
|
|
211
241
|
},
|
|
212
242
|
{
|
|
213
243
|
"name": "get_extension",
|
|
@@ -157,6 +157,107 @@
|
|
|
157
157
|
"required": ["url", "elements"]
|
|
158
158
|
}
|
|
159
159
|
},
|
|
160
|
+
{
|
|
161
|
+
"name": "smart_scrape",
|
|
162
|
+
"description": "Intelligently scrape a URL using Browserless cascading strategies: fast HTTP fetch, proxy, headless browser, and CAPTCHA solving as needed. Returns JSON with requested outputs such as HTML, markdown, links, screenshots, or PDFs.",
|
|
163
|
+
"method": "POST",
|
|
164
|
+
"path": "/smart-scrape",
|
|
165
|
+
"input_schema": {
|
|
166
|
+
"type": "object",
|
|
167
|
+
"properties": {
|
|
168
|
+
"url": { "type": "string", "description": "Target URL" },
|
|
169
|
+
"formats": { "type": "array", "items": { "type": "string" }, "description": "Outputs to return, e.g. html, markdown, links, screenshot, pdf" },
|
|
170
|
+
"waitFor": { "type": ["string", "integer"], "description": "Selector or milliseconds to wait" },
|
|
171
|
+
"proxy": { "type": "object", "description": "Optional proxy configuration" },
|
|
172
|
+
"timeout": { "type": "integer", "description": "Request timeout in milliseconds" }
|
|
173
|
+
},
|
|
174
|
+
"required": ["url"]
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "unblock",
|
|
179
|
+
"description": "Bypass bot detection for a URL and return content, cookies, screenshots, or a browserWSEndpoint for custom automation. Best with Browserless residential proxies.",
|
|
180
|
+
"method": "POST",
|
|
181
|
+
"path": "/unblock",
|
|
182
|
+
"timeout_ms": 305000,
|
|
183
|
+
"input_schema": {
|
|
184
|
+
"type": "object",
|
|
185
|
+
"properties": {
|
|
186
|
+
"url": { "type": "string", "description": "Target URL" },
|
|
187
|
+
"browserWSEndpoint": { "type": "boolean", "description": "Return a WebSocket endpoint for handoff to Puppeteer/Playwright" },
|
|
188
|
+
"cookies": { "type": "boolean", "description": "Return cookies" },
|
|
189
|
+
"content": { "type": "boolean", "description": "Return page content" },
|
|
190
|
+
"screenshot": { "type": "boolean", "description": "Return a screenshot" },
|
|
191
|
+
"ttl": { "type": "integer", "description": "Browser lifetime in milliseconds" }
|
|
192
|
+
},
|
|
193
|
+
"required": ["url"]
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "search",
|
|
198
|
+
"description": "Search the web through Browserless and return structured results for discovery before scraping.",
|
|
199
|
+
"method": "POST",
|
|
200
|
+
"path": "/search",
|
|
201
|
+
"input_schema": {
|
|
202
|
+
"type": "object",
|
|
203
|
+
"properties": {
|
|
204
|
+
"query": { "type": "string" },
|
|
205
|
+
"limit": { "type": "integer" },
|
|
206
|
+
"country": { "type": "string" },
|
|
207
|
+
"language": { "type": "string" }
|
|
208
|
+
},
|
|
209
|
+
"required": ["query"]
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "map",
|
|
214
|
+
"description": "Discover URLs on a website through Browserless without scraping every page.",
|
|
215
|
+
"method": "POST",
|
|
216
|
+
"path": "/map",
|
|
217
|
+
"input_schema": {
|
|
218
|
+
"type": "object",
|
|
219
|
+
"properties": {
|
|
220
|
+
"url": { "type": "string" },
|
|
221
|
+
"limit": { "type": "integer" },
|
|
222
|
+
"includeSubdomains": { "type": "boolean" },
|
|
223
|
+
"sitemap": { "type": "string" }
|
|
224
|
+
},
|
|
225
|
+
"required": ["url"]
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"name": "crawl",
|
|
230
|
+
"description": "Start an asynchronous Browserless crawl that maps and scrapes a site into structured output.",
|
|
231
|
+
"method": "POST",
|
|
232
|
+
"path": "/crawl",
|
|
233
|
+
"timeout_ms": 65000,
|
|
234
|
+
"input_schema": {
|
|
235
|
+
"type": "object",
|
|
236
|
+
"properties": {
|
|
237
|
+
"url": { "type": "string" },
|
|
238
|
+
"limit": { "type": "integer" },
|
|
239
|
+
"formats": { "type": "array", "items": { "type": "string" } },
|
|
240
|
+
"maxDepth": { "type": "integer" },
|
|
241
|
+
"includePaths": { "type": "array", "items": { "type": "string" } },
|
|
242
|
+
"excludePaths": { "type": "array", "items": { "type": "string" } }
|
|
243
|
+
},
|
|
244
|
+
"required": ["url"]
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"name": "bql",
|
|
249
|
+
"description": "Run a BrowserQL GraphQL query against Browserless Chromium. Use for stealth browser automation, CAPTCHA solving, navigation, interaction, and extraction workflows that are too complex for REST scrape endpoints.",
|
|
250
|
+
"method": "POST",
|
|
251
|
+
"path": "/chromium/bql",
|
|
252
|
+
"input_schema": {
|
|
253
|
+
"type": "object",
|
|
254
|
+
"properties": {
|
|
255
|
+
"query": { "type": "string", "description": "GraphQL BrowserQL query or mutation" },
|
|
256
|
+
"variables": { "type": "object", "description": "GraphQL variables" }
|
|
257
|
+
},
|
|
258
|
+
"required": ["query"]
|
|
259
|
+
}
|
|
260
|
+
},
|
|
160
261
|
{
|
|
161
262
|
"name": "stats",
|
|
162
263
|
"description": "Get account / session stats — credits used, concurrency, queue depth.",
|
package/src/apps/dataforseo.json
CHANGED
|
@@ -356,6 +356,7 @@
|
|
|
356
356
|
"description": "Get all keywords a domain ranks for in organic search with positions, search volume, and traffic estimates",
|
|
357
357
|
"method": "POST",
|
|
358
358
|
"path": "/dataforseo_labs/google/ranked_keywords/live",
|
|
359
|
+
"body_root_param": "tasks",
|
|
359
360
|
"input_schema": {
|
|
360
361
|
"type": "object",
|
|
361
362
|
"properties": {
|
|
@@ -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,273 @@
|
|
|
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
|
+
"text": {
|
|
543
|
+
"type": "string",
|
|
544
|
+
"minLength": 100,
|
|
545
|
+
"maxLength": 1000,
|
|
546
|
+
"description": "Optional preview text. If omitted, set auto_generate_text=true."
|
|
547
|
+
},
|
|
548
|
+
"auto_generate_text": {
|
|
549
|
+
"type": "boolean",
|
|
550
|
+
"default": false,
|
|
551
|
+
"description": "Ask ElevenLabs to generate suitable preview text for the voice description."
|
|
552
|
+
},
|
|
553
|
+
"loudness": {
|
|
554
|
+
"type": "number",
|
|
555
|
+
"minimum": -1,
|
|
556
|
+
"maximum": 1,
|
|
557
|
+
"default": 0.5,
|
|
558
|
+
"description": "Preview loudness control. -1 is quietest, 1 is loudest."
|
|
559
|
+
},
|
|
560
|
+
"quality": {
|
|
561
|
+
"type": "number",
|
|
562
|
+
"minimum": -1,
|
|
563
|
+
"maximum": 1,
|
|
564
|
+
"default": 0.9,
|
|
565
|
+
"description": "Higher quality improves output but reduces variety."
|
|
566
|
+
},
|
|
567
|
+
"seed": {
|
|
568
|
+
"type": "integer",
|
|
569
|
+
"minimum": 0,
|
|
570
|
+
"maximum": 2147483647,
|
|
571
|
+
"description": "Optional deterministic seed."
|
|
572
|
+
},
|
|
573
|
+
"guidance_scale": {
|
|
574
|
+
"type": "number",
|
|
575
|
+
"minimum": 0,
|
|
576
|
+
"maximum": 100,
|
|
577
|
+
"default": 5,
|
|
578
|
+
"description": "How closely the model follows the prompt."
|
|
579
|
+
},
|
|
580
|
+
"should_enhance": {
|
|
581
|
+
"type": "boolean",
|
|
582
|
+
"default": false,
|
|
583
|
+
"description": "Enhance the voice description with AI before generating previews."
|
|
584
|
+
},
|
|
585
|
+
"output_format": {
|
|
586
|
+
"type": "string",
|
|
587
|
+
"default": "mp3_44100_128",
|
|
588
|
+
"description": "Preview audio output format."
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
"required": [
|
|
592
|
+
"voice_description"
|
|
593
|
+
]
|
|
594
|
+
}
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"name": "create_voice_from_preview",
|
|
598
|
+
"description": "Save a generated Voice Design or remix preview as a reusable ElevenLabs voice. Use generated_voice_id from design_voice or remix_voice.",
|
|
599
|
+
"method": "POST",
|
|
600
|
+
"path": "/text-to-voice",
|
|
601
|
+
"timeout_ms": 60000,
|
|
602
|
+
"input_schema": {
|
|
603
|
+
"type": "object",
|
|
604
|
+
"properties": {
|
|
605
|
+
"voice_name": {
|
|
606
|
+
"type": "string",
|
|
607
|
+
"description": "Name for the new saved voice."
|
|
608
|
+
},
|
|
609
|
+
"voice_description": {
|
|
610
|
+
"type": "string",
|
|
611
|
+
"minLength": 20,
|
|
612
|
+
"maxLength": 1000,
|
|
613
|
+
"description": "Description for the saved voice."
|
|
614
|
+
},
|
|
615
|
+
"generated_voice_id": {
|
|
616
|
+
"type": "string",
|
|
617
|
+
"description": "Generated preview voice id returned by design_voice or remix_voice."
|
|
618
|
+
},
|
|
619
|
+
"labels": {
|
|
620
|
+
"type": "object",
|
|
621
|
+
"additionalProperties": {
|
|
622
|
+
"type": "string"
|
|
623
|
+
},
|
|
624
|
+
"description": "Optional metadata labels, for example language, accent, gender, age, or use_case."
|
|
625
|
+
},
|
|
626
|
+
"played_not_selected_voice_ids": {
|
|
627
|
+
"type": "array",
|
|
628
|
+
"items": {
|
|
629
|
+
"type": "string"
|
|
630
|
+
},
|
|
631
|
+
"description": "Optional generated voice ids the user previewed but did not select."
|
|
632
|
+
}
|
|
633
|
+
},
|
|
634
|
+
"required": [
|
|
635
|
+
"voice_name",
|
|
636
|
+
"voice_description",
|
|
637
|
+
"generated_voice_id"
|
|
638
|
+
]
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"name": "remix_voice",
|
|
643
|
+
"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.",
|
|
644
|
+
"method": "POST",
|
|
645
|
+
"path": "/text-to-voice/{voice_id}/remix",
|
|
646
|
+
"timeout_ms": 180000,
|
|
647
|
+
"query_params": [
|
|
648
|
+
"output_format"
|
|
649
|
+
],
|
|
650
|
+
"input_schema": {
|
|
651
|
+
"type": "object",
|
|
652
|
+
"properties": {
|
|
653
|
+
"voice_id": {
|
|
654
|
+
"type": "string",
|
|
655
|
+
"description": "Existing voice id to remix."
|
|
656
|
+
},
|
|
657
|
+
"voice_description": {
|
|
658
|
+
"type": "string",
|
|
659
|
+
"minLength": 5,
|
|
660
|
+
"maxLength": 1000,
|
|
661
|
+
"description": "Description of the changes to make to the voice."
|
|
662
|
+
},
|
|
663
|
+
"text": {
|
|
664
|
+
"type": "string",
|
|
665
|
+
"minLength": 100,
|
|
666
|
+
"maxLength": 1000,
|
|
667
|
+
"description": "Optional preview text."
|
|
668
|
+
},
|
|
669
|
+
"auto_generate_text": {
|
|
670
|
+
"type": "boolean",
|
|
671
|
+
"default": false
|
|
672
|
+
},
|
|
673
|
+
"loudness": {
|
|
674
|
+
"type": "number",
|
|
675
|
+
"minimum": -1,
|
|
676
|
+
"maximum": 1,
|
|
677
|
+
"default": 0.5
|
|
678
|
+
},
|
|
679
|
+
"seed": {
|
|
680
|
+
"type": "integer",
|
|
681
|
+
"minimum": 0,
|
|
682
|
+
"maximum": 2147483647
|
|
683
|
+
},
|
|
684
|
+
"guidance_scale": {
|
|
685
|
+
"type": "number",
|
|
686
|
+
"minimum": 0,
|
|
687
|
+
"maximum": 100,
|
|
688
|
+
"default": 2
|
|
689
|
+
},
|
|
690
|
+
"stream_previews": {
|
|
691
|
+
"type": "boolean",
|
|
692
|
+
"default": false,
|
|
693
|
+
"description": "When true, return generated IDs without inline preview audio."
|
|
694
|
+
},
|
|
695
|
+
"remixing_session_id": {
|
|
696
|
+
"type": "string"
|
|
697
|
+
},
|
|
698
|
+
"remixing_session_iteration_id": {
|
|
699
|
+
"type": "string"
|
|
700
|
+
},
|
|
701
|
+
"prompt_strength": {
|
|
702
|
+
"type": "number",
|
|
703
|
+
"minimum": 0,
|
|
704
|
+
"maximum": 1,
|
|
705
|
+
"description": "Balance prompt versus reference audio when supported by the selected model."
|
|
706
|
+
},
|
|
707
|
+
"output_format": {
|
|
708
|
+
"type": "string",
|
|
709
|
+
"default": "mp3_44100_128"
|
|
710
|
+
}
|
|
711
|
+
},
|
|
712
|
+
"required": [
|
|
713
|
+
"voice_id",
|
|
714
|
+
"voice_description"
|
|
715
|
+
]
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"name": "stream_voice_preview",
|
|
720
|
+
"description": "Stream/download the audio preview for a generated_voice_id returned by design_voice or remix_voice. Returns binary audio.",
|
|
721
|
+
"method": "GET",
|
|
722
|
+
"path": "/text-to-voice/{generated_voice_id}/stream",
|
|
723
|
+
"timeout_ms": 60000,
|
|
724
|
+
"input_schema": {
|
|
725
|
+
"type": "object",
|
|
726
|
+
"properties": {
|
|
727
|
+
"generated_voice_id": {
|
|
728
|
+
"type": "string",
|
|
729
|
+
"description": "Generated preview voice id."
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
"required": [
|
|
733
|
+
"generated_voice_id"
|
|
734
|
+
]
|
|
735
|
+
}
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"name": "create_ivc_voice",
|
|
739
|
+
"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.",
|
|
740
|
+
"method": "POST",
|
|
741
|
+
"path": "/voices/add",
|
|
742
|
+
"timeout_ms": 180000,
|
|
743
|
+
"multipart_form": {
|
|
744
|
+
"file_fields": {
|
|
745
|
+
"files": "files[]"
|
|
746
|
+
},
|
|
747
|
+
"field_names": [
|
|
748
|
+
"name",
|
|
749
|
+
"description",
|
|
750
|
+
"labels",
|
|
751
|
+
"remove_background_noise"
|
|
752
|
+
]
|
|
753
|
+
},
|
|
754
|
+
"input_schema": {
|
|
755
|
+
"type": "object",
|
|
756
|
+
"properties": {
|
|
757
|
+
"name": {
|
|
758
|
+
"type": "string",
|
|
759
|
+
"description": "Name for the cloned voice."
|
|
760
|
+
},
|
|
761
|
+
"files": {
|
|
762
|
+
"type": "array",
|
|
763
|
+
"items": {
|
|
764
|
+
"type": "string"
|
|
765
|
+
},
|
|
766
|
+
"description": "Audio sample files as blobref:// handles, runtime binary envelopes, base64 strings, or storage-resolved files once multipart support is enabled."
|
|
767
|
+
},
|
|
768
|
+
"description": {
|
|
769
|
+
"type": "string",
|
|
770
|
+
"description": "Optional description of the voice."
|
|
771
|
+
},
|
|
772
|
+
"remove_background_noise": {
|
|
773
|
+
"type": "boolean",
|
|
774
|
+
"default": false,
|
|
775
|
+
"description": "Remove background noise from samples before cloning."
|
|
776
|
+
},
|
|
777
|
+
"labels": {
|
|
778
|
+
"type": "object",
|
|
779
|
+
"additionalProperties": {
|
|
780
|
+
"type": "string"
|
|
781
|
+
},
|
|
782
|
+
"description": "Optional labels such as language, accent, gender, or age."
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
"required": [
|
|
786
|
+
"name",
|
|
787
|
+
"files"
|
|
788
|
+
]
|
|
789
|
+
}
|
|
790
|
+
},
|
|
508
791
|
{
|
|
509
792
|
"name": "list_models",
|
|
510
793
|
"description": "List ElevenLabs models, including flags such as can_do_text_to_speech and model rate metadata.",
|
package/src/apps/firecrawl.json
CHANGED
|
@@ -447,6 +447,117 @@
|
|
|
447
447
|
"required": ["id"]
|
|
448
448
|
}
|
|
449
449
|
},
|
|
450
|
+
{
|
|
451
|
+
"name": "agent",
|
|
452
|
+
"description": "Run Firecrawl's autonomous web data gathering agent. Use when the agent should search, navigate, and extract structured data without you knowing the exact URLs upfront.",
|
|
453
|
+
"method": "POST",
|
|
454
|
+
"path": "/agent",
|
|
455
|
+
"timeout_ms": 305000,
|
|
456
|
+
"input_schema": {
|
|
457
|
+
"type": "object",
|
|
458
|
+
"properties": {
|
|
459
|
+
"prompt": {
|
|
460
|
+
"type": "string",
|
|
461
|
+
"description": "Natural-language task describing what data to gather."
|
|
462
|
+
},
|
|
463
|
+
"schema": {
|
|
464
|
+
"type": "object",
|
|
465
|
+
"description": "Optional JSON Schema for structured output."
|
|
466
|
+
},
|
|
467
|
+
"model": {
|
|
468
|
+
"type": "string",
|
|
469
|
+
"description": "Optional Firecrawl agent model tier, when supported by the account."
|
|
470
|
+
},
|
|
471
|
+
"maxPages": {
|
|
472
|
+
"type": "integer",
|
|
473
|
+
"description": "Optional page budget for the agent run."
|
|
474
|
+
},
|
|
475
|
+
"timeout": {
|
|
476
|
+
"type": "integer",
|
|
477
|
+
"description": "Optional timeout in milliseconds."
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
"required": ["prompt"]
|
|
481
|
+
}
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"name": "interact_with_scrape",
|
|
485
|
+
"description": "Continue interacting with the browser state from a previous scrape. Provide either a natural-language prompt or Playwright code, not both. Use the scrapeId/jobId from scrape response metadata.",
|
|
486
|
+
"method": "POST",
|
|
487
|
+
"path": "/scrape/{jobId}/interact",
|
|
488
|
+
"timeout_ms": 305000,
|
|
489
|
+
"input_schema": {
|
|
490
|
+
"type": "object",
|
|
491
|
+
"properties": {
|
|
492
|
+
"jobId": {
|
|
493
|
+
"type": "string",
|
|
494
|
+
"description": "The scrape job ID / scrapeId returned by firecrawl_scrape."
|
|
495
|
+
},
|
|
496
|
+
"prompt": {
|
|
497
|
+
"type": "string",
|
|
498
|
+
"description": "Natural-language instruction, e.g. click a filter, fill a form, or extract after interaction."
|
|
499
|
+
},
|
|
500
|
+
"code": {
|
|
501
|
+
"type": "string",
|
|
502
|
+
"description": "Playwright code to execute in the existing browser session."
|
|
503
|
+
},
|
|
504
|
+
"timeout": {
|
|
505
|
+
"type": "integer",
|
|
506
|
+
"description": "Optional timeout in milliseconds."
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
"required": ["jobId"]
|
|
510
|
+
}
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"name": "stop_scrape_interact",
|
|
514
|
+
"description": "Stop and release the interactive browser session associated with a scrape job.",
|
|
515
|
+
"method": "DELETE",
|
|
516
|
+
"path": "/scrape/{jobId}/interact",
|
|
517
|
+
"input_schema": {
|
|
518
|
+
"type": "object",
|
|
519
|
+
"properties": {
|
|
520
|
+
"jobId": {
|
|
521
|
+
"type": "string",
|
|
522
|
+
"description": "The scrape job ID / scrapeId."
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"required": ["jobId"]
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"name": "create_interact_session",
|
|
530
|
+
"description": "Start a standalone Firecrawl Interact browser session that can be driven with code, without first calling scrape.",
|
|
531
|
+
"method": "POST",
|
|
532
|
+
"path": "/interact",
|
|
533
|
+
"input_schema": {
|
|
534
|
+
"type": "object",
|
|
535
|
+
"properties": {
|
|
536
|
+
"ttl": {
|
|
537
|
+
"type": "integer",
|
|
538
|
+
"description": "Session time-to-live in seconds."
|
|
539
|
+
},
|
|
540
|
+
"activityTtl": {
|
|
541
|
+
"type": "integer",
|
|
542
|
+
"description": "Idle timeout in seconds."
|
|
543
|
+
},
|
|
544
|
+
"streamWebView": {
|
|
545
|
+
"type": "boolean",
|
|
546
|
+
"description": "Whether to return a live web view URL."
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"name": "list_interact_sessions",
|
|
553
|
+
"description": "List standalone Firecrawl Interact browser sessions.",
|
|
554
|
+
"method": "GET",
|
|
555
|
+
"path": "/interact",
|
|
556
|
+
"input_schema": {
|
|
557
|
+
"type": "object",
|
|
558
|
+
"properties": {}
|
|
559
|
+
}
|
|
560
|
+
},
|
|
450
561
|
{
|
|
451
562
|
"name": "batch_scrape",
|
|
452
563
|
"description": "Scrape a fixed list of URLs in one job. Returns a job id — poll firecrawl_batch_scrape_status to retrieve results. Use this when you already have the list of URLs (vs crawl, which discovers them).",
|