@pixelml/claw 3.3.1 → 3.3.2
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/.claw/skill/agenticflow-skill/GUIDES.md +2269 -0
- package/.claw/skill/agenticflow-skill/OPTIMIZATION.md +84 -0
- package/.claw/skill/agenticflow-skill/SKILL.md +56 -0
- package/.claw/skill/agenticflow-skill/references/mcp_integrations.md +373 -0
- package/.claw/skill/agenticflow-skill/references/node_types.md +2562 -0
- package/.claw/skill/agenticflow-skill/references/workflow_guide.md +350 -0
- package/package.json +12 -12
|
@@ -0,0 +1,2562 @@
|
|
|
1
|
+
# AgenticFlow Node Types Reference
|
|
2
|
+
|
|
3
|
+
This document provides a comprehensive guide to all available node types in AgenticFlow, organized by functional category. Use this reference when designing workflows to select the appropriate nodes for your automation needs.
|
|
4
|
+
|
|
5
|
+
**Total Node Types Available:** 139
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Quick Selection Guide
|
|
10
|
+
|
|
11
|
+
### When to Use Each Category
|
|
12
|
+
|
|
13
|
+
**AI & LLM Nodes** - For intelligent processing, text generation, analysis, and decision-making
|
|
14
|
+
**Web Research & Search** - For gathering information from the internet
|
|
15
|
+
**Web Scraping** - For extracting data from specific websites
|
|
16
|
+
**Data Extraction & Processing** - For structuring unstructured data
|
|
17
|
+
**Image Generation & Processing** - For creating and manipulating images
|
|
18
|
+
**Video Processing** - For creating and editing videos
|
|
19
|
+
**Audio & Speech** - For voice synthesis and transcription
|
|
20
|
+
**Document Processing** - For working with documents and markdown
|
|
21
|
+
**Email & Communication** - For sending emails and messages
|
|
22
|
+
**File Storage & Management** - For file operations and storage
|
|
23
|
+
**API & Integration** - For connecting to external services
|
|
24
|
+
**MCP Integration** - For accessing 2,500+ external service integrations
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## AI & LLM
|
|
29
|
+
|
|
30
|
+
*Intelligent processing, text generation, analysis, and AI-powered tasks*
|
|
31
|
+
|
|
32
|
+
**Node Types:** 20
|
|
33
|
+
|
|
34
|
+
### claude_ask
|
|
35
|
+
|
|
36
|
+
**Title:** Ask Claude
|
|
37
|
+
|
|
38
|
+
**Description:** Ask Claude anything you want!
|
|
39
|
+
|
|
40
|
+
**Connection Required:** Claude Connection (Required)
|
|
41
|
+
|
|
42
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
43
|
+
|
|
44
|
+
**Key Input Fields:**
|
|
45
|
+
- `model` (any): The model to use for the chat.
|
|
46
|
+
- `prompt` (string): The question to ask the model.
|
|
47
|
+
- `images` (any): The images to use for the chat.
|
|
48
|
+
- `temperature` (number): Controls randomness: Lowering results in less random completions. As the tempera
|
|
49
|
+
- `max_tokens` (integer): The maximum number of tokens to generate. Requests can use up to 2,048 or 4,096
|
|
50
|
+
- ... and 1 more fields
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
### claude_extract_structured_data
|
|
55
|
+
|
|
56
|
+
**Title:** Extract Structured Data with Claude
|
|
57
|
+
|
|
58
|
+
**Description:** Extract structured data from text or images using Claude.
|
|
59
|
+
|
|
60
|
+
**Connection Required:** Claude Connection (Required)
|
|
61
|
+
|
|
62
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
63
|
+
|
|
64
|
+
**Key Input Fields:**
|
|
65
|
+
- `model` (any): The model to use for extracting structured data.
|
|
66
|
+
- `text` (any): Text to extract structured data from.
|
|
67
|
+
- `images` (any): Images to extract structured data from.
|
|
68
|
+
- `prompt` (string): Prompt to guide the AI in extracting structured data.
|
|
69
|
+
- `schema_mode` (any): Mode for defining the schema.
|
|
70
|
+
- ... and 3 more fields
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
### create_agent_task
|
|
75
|
+
|
|
76
|
+
**Title:** Create Agent Task
|
|
77
|
+
|
|
78
|
+
**Description:** Create a new agent task
|
|
79
|
+
|
|
80
|
+
**Connection Required:** No
|
|
81
|
+
|
|
82
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
83
|
+
|
|
84
|
+
**Key Input Fields:**
|
|
85
|
+
- `title` (string): Title of the task
|
|
86
|
+
- `description` (string): Description of the task
|
|
87
|
+
- `priority` (any): Priority level of the task
|
|
88
|
+
- `details` (string): Additional details for the task
|
|
89
|
+
- `agent_id` (any): ID of the agent assigned to the task
|
|
90
|
+
- ... and 2 more fields
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
### create_multiple_agent_tasks
|
|
95
|
+
|
|
96
|
+
**Title:** Create Multiple Agent Tasks
|
|
97
|
+
|
|
98
|
+
**Description:** Create multiple new agent tasks at once using JSON input
|
|
99
|
+
|
|
100
|
+
**Connection Required:** No
|
|
101
|
+
|
|
102
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
103
|
+
|
|
104
|
+
**Key Input Fields:**
|
|
105
|
+
- `tasks_json` (array): JSON string containing list of tasks to create. Each task should have title, des
|
|
106
|
+
- `thread_id` (any): ID of the thread associated with the tasks
|
|
107
|
+
- `parent_id` (any): ID of the parent task
|
|
108
|
+
- `agent_id` (any): ID of the agent assigned to the task
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
### delete_agent_task
|
|
113
|
+
|
|
114
|
+
**Title:** Delete Agent Task
|
|
115
|
+
|
|
116
|
+
**Description:** Delete an agent task
|
|
117
|
+
|
|
118
|
+
**Connection Required:** No
|
|
119
|
+
|
|
120
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
121
|
+
|
|
122
|
+
**Key Input Fields:**
|
|
123
|
+
- `task_id` (string): ID of the task to delete
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
### get_agent_task
|
|
128
|
+
|
|
129
|
+
**Title:** Get Agent Task
|
|
130
|
+
|
|
131
|
+
**Description:** Get an agent task by ID
|
|
132
|
+
|
|
133
|
+
**Connection Required:** No
|
|
134
|
+
|
|
135
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
136
|
+
|
|
137
|
+
**Key Input Fields:**
|
|
138
|
+
- `task_id` (string): ID of the task to retrieve
|
|
139
|
+
- `include_subtasks` (boolean): Whether to include subtasks in the response
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
### google_gen_ai_ask_gemini
|
|
144
|
+
|
|
145
|
+
**Title:** Ask Gemini
|
|
146
|
+
|
|
147
|
+
**Description:** Ask a Gemini anything you want!
|
|
148
|
+
|
|
149
|
+
**Connection Required:** Google Gen AI Connection (Required)
|
|
150
|
+
|
|
151
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
152
|
+
|
|
153
|
+
**Key Input Fields:**
|
|
154
|
+
- `model` (any): The model to use for the chat.
|
|
155
|
+
- `model_response_modalities` (array): Model Response Modalities
|
|
156
|
+
- `prompt` (string): The question to ask the model.
|
|
157
|
+
- `images` (any): The images to use for the chat.
|
|
158
|
+
- `temperature` (number): Controls randomness: Lowering results in less random completions. As the tempera
|
|
159
|
+
- ... and 4 more fields
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
### groq_chat
|
|
164
|
+
|
|
165
|
+
**Title:** Chat with Groq
|
|
166
|
+
|
|
167
|
+
**Description:** Chat with high-performance Groq models for fast inference on open-source LLMs.
|
|
168
|
+
|
|
169
|
+
**Connection Required:** Groq Connection (Required)
|
|
170
|
+
|
|
171
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
172
|
+
|
|
173
|
+
**Key Input Fields:**
|
|
174
|
+
- `model` (any): The Groq model to use for the chat.
|
|
175
|
+
- `prompt` (string): The message to send to the Groq model.
|
|
176
|
+
- `system_message` (any): Instructions for the AI assistant on how to behave and respond.
|
|
177
|
+
- `temperature` (number): Controls randomness: Lower values make output more focused and deterministic, hi
|
|
178
|
+
- `max_tokens` (integer): The maximum number of tokens to generate in the response.
|
|
179
|
+
- ... and 2 more fields
|
|
180
|
+
|
|
181
|
+
---
|
|
182
|
+
|
|
183
|
+
### list_agent_tasks
|
|
184
|
+
|
|
185
|
+
**Title:** List Agent Tasks
|
|
186
|
+
|
|
187
|
+
**Description:** List all agent tasks with optional filtering
|
|
188
|
+
|
|
189
|
+
**Connection Required:** No
|
|
190
|
+
|
|
191
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
192
|
+
|
|
193
|
+
**Key Input Fields:**
|
|
194
|
+
- `thread_id` (any): Filter tasks by thread ID
|
|
195
|
+
- `parent_id` (any): Filter tasks by parent task ID
|
|
196
|
+
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
### llm
|
|
200
|
+
|
|
201
|
+
**Title:** LLM
|
|
202
|
+
|
|
203
|
+
**Description:** Use a large language model such as GPT
|
|
204
|
+
|
|
205
|
+
**Connection Required:** No
|
|
206
|
+
|
|
207
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
208
|
+
|
|
209
|
+
**Key Input Fields:**
|
|
210
|
+
- `human_message` (string): The prompt that is fed to the model.
|
|
211
|
+
- `system_message` (any): This represents a system message, which tells the model how to behave.
|
|
212
|
+
- `chat_history_id` (any): The chat history id used to retrieve the chat history. If not provided, a new ch
|
|
213
|
+
- `model` (string): The AI model to use to generate the response.
|
|
214
|
+
- `temperature` (number): The temperature to use when generating the response. Higher temperatures will re
|
|
215
|
+
|
|
216
|
+
---
|
|
217
|
+
|
|
218
|
+
### openai_ask_assistant
|
|
219
|
+
|
|
220
|
+
**Title:** Ask Assistant
|
|
221
|
+
|
|
222
|
+
**Description:** Ask a GPT assistant anything you want!
|
|
223
|
+
|
|
224
|
+
**Connection Required:** OpenAI Connection (Required)
|
|
225
|
+
|
|
226
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
227
|
+
|
|
228
|
+
**Key Input Fields:**
|
|
229
|
+
- `assistant` (string): The assistant which will generate the completion.
|
|
230
|
+
- `prompt` (string): The text prompt to ask the assistant.
|
|
231
|
+
- `memory_key` (any): A memory key that will keep the chat history shared across runs. Leave empty to
|
|
232
|
+
|
|
233
|
+
---
|
|
234
|
+
|
|
235
|
+
### openai_ask_chat_gpt
|
|
236
|
+
|
|
237
|
+
**Title:** Ask ChatGPT
|
|
238
|
+
|
|
239
|
+
**Description:** Use AI to ask a question
|
|
240
|
+
|
|
241
|
+
**Connection Required:** OpenAI Connection (Required)
|
|
242
|
+
|
|
243
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
244
|
+
|
|
245
|
+
**Key Input Fields:**
|
|
246
|
+
- `model` (string): The model to use for the chat.
|
|
247
|
+
- `prompt` (string): The question to ask the model.
|
|
248
|
+
- `temperature` (number): Controls randomness: Lowering results in less random completions. As the tempera
|
|
249
|
+
- `max_tokens` (integer): The maximum number of tokens to generate. Requests can use up to 2,048 or 4,096
|
|
250
|
+
- `top_p` (number): An alternative to sampling with temperature, called nucleus sampling, where the
|
|
251
|
+
- ... and 3 more fields
|
|
252
|
+
|
|
253
|
+
---
|
|
254
|
+
|
|
255
|
+
### openai_extract_structured_data
|
|
256
|
+
|
|
257
|
+
**Title:** Extract Structured Data
|
|
258
|
+
|
|
259
|
+
**Description:** Returns structured data from provided unstructured text.
|
|
260
|
+
|
|
261
|
+
**Connection Required:** OpenAI Connection (Required)
|
|
262
|
+
|
|
263
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
264
|
+
|
|
265
|
+
**Key Input Fields:**
|
|
266
|
+
- `model` (string): The model to use for extracting structured data. Use gpt-4o-2024-08-06 or later
|
|
267
|
+
- `text` (string): The text from which to extract structured data.
|
|
268
|
+
- `schema_name` (string): A name for the schema (required by OpenAI).
|
|
269
|
+
- `json_schema` (object): The JSON Schema that defines the structure of the data to extract. Must be a val
|
|
270
|
+
- `strict` (boolean): Whether to enforce strict schema validation. When true, the model will always ge
|
|
271
|
+
- ... and 1 more fields
|
|
272
|
+
|
|
273
|
+
---
|
|
274
|
+
|
|
275
|
+
### openai_generate_image
|
|
276
|
+
|
|
277
|
+
**Title:** Generate Image
|
|
278
|
+
|
|
279
|
+
**Description:** Generate an image using text-to-image models
|
|
280
|
+
|
|
281
|
+
**Connection Required:** OpenAI Connection (Required)
|
|
282
|
+
|
|
283
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
284
|
+
|
|
285
|
+
**Key Input Fields:**
|
|
286
|
+
- `model` (string): The model which will generate the image.
|
|
287
|
+
- `prompt` (string): The text prompt to generate an image from.
|
|
288
|
+
- `resolution` (string): The resolution to generate the image in.
|
|
289
|
+
- `quality` (string): Standard is faster, HD has better details.
|
|
290
|
+
|
|
291
|
+
---
|
|
292
|
+
|
|
293
|
+
### openai_search
|
|
294
|
+
|
|
295
|
+
**Title:** OpenAI Web Search
|
|
296
|
+
|
|
297
|
+
**Description:** Searches the web using OpenAI's capabilities
|
|
298
|
+
|
|
299
|
+
**Connection Required:** OpenAI Connection (Required)
|
|
300
|
+
|
|
301
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
302
|
+
|
|
303
|
+
**Key Input Fields:**
|
|
304
|
+
- `search_queries` (array): List of search queries to process using OpenAI's web search capability
|
|
305
|
+
- `model` (string): The OpenAI model to use for search
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
309
|
+
### openai_text_to_speech
|
|
310
|
+
|
|
311
|
+
**Title:** Text-to-Speech (OpenAI)
|
|
312
|
+
|
|
313
|
+
**Description:** Generate an audio recording from text using OpenAI's text-to-speech API
|
|
314
|
+
|
|
315
|
+
**Connection Required:** OpenAI Connection (Required)
|
|
316
|
+
|
|
317
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
318
|
+
|
|
319
|
+
**Key Input Fields:**
|
|
320
|
+
- `model` (string): The model which will generate the audio.
|
|
321
|
+
- `text` (string): The text you want to convert to speech.
|
|
322
|
+
- `voice` (string): The voice to generate the audio in.
|
|
323
|
+
- `format` (string): The format you want the audio file in.
|
|
324
|
+
- `speed` (number): The speed of the audio. Minimum is 0.25 and maximum is 4.00.
|
|
325
|
+
- ... and 1 more fields
|
|
326
|
+
|
|
327
|
+
---
|
|
328
|
+
|
|
329
|
+
### openai_transcriptions
|
|
330
|
+
|
|
331
|
+
**Title:** Audio Transcription
|
|
332
|
+
|
|
333
|
+
**Description:** Transcribe audio to text using OpenAI's Whisper model
|
|
334
|
+
|
|
335
|
+
**Connection Required:** OpenAI Connection (Required)
|
|
336
|
+
|
|
337
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
338
|
+
|
|
339
|
+
**Key Input Fields:**
|
|
340
|
+
- `model` (string): The model to use for transcription.
|
|
341
|
+
- `audio_file` (string): The audio file to transcribe.
|
|
342
|
+
- `response_format` (string): The format of the transcript output.
|
|
343
|
+
- `language` (any): The language of the input audio. Supplying the input language in ISO-639-1 forma
|
|
344
|
+
- `prompt` (any): An optional text to guide the model's style or continue a previous audio segment
|
|
345
|
+
- ... and 1 more fields
|
|
346
|
+
|
|
347
|
+
---
|
|
348
|
+
|
|
349
|
+
### pml_llm
|
|
350
|
+
|
|
351
|
+
**Title:** Ask LLM advance
|
|
352
|
+
|
|
353
|
+
**Description:** Use a large language model such as GPT
|
|
354
|
+
|
|
355
|
+
**Connection Required:** PixelML Connection (Required)
|
|
356
|
+
|
|
357
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
358
|
+
|
|
359
|
+
**Key Input Fields:**
|
|
360
|
+
- `human_message` (string): The prompt that is fed to the model.
|
|
361
|
+
- `system_message` (any): This represents a system message, which tells the model how to behave.
|
|
362
|
+
- `chat_history_id` (any): The chat history id used to retrieve the chat history. If not provided, a new ch
|
|
363
|
+
- `model` (string): The AI model to use to generate the response.
|
|
364
|
+
- `temperature` (number): The temperature to use when generating the response. Higher temperatures will re
|
|
365
|
+
|
|
366
|
+
---
|
|
367
|
+
|
|
368
|
+
### telegram_send_chat_action
|
|
369
|
+
|
|
370
|
+
**Title:** Send Telegram Chat Action
|
|
371
|
+
|
|
372
|
+
**Description:** Send a chat action to a Telegram chat to indicate what the bot is doing.
|
|
373
|
+
|
|
374
|
+
**Connection Required:** Telegram Bot Connection (Required)
|
|
375
|
+
|
|
376
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
377
|
+
|
|
378
|
+
**Key Input Fields:**
|
|
379
|
+
- `chat_id` (string): Unique identifier for the target chat or username of the target channel (in the
|
|
380
|
+
- `action` (string): Type of action to broadcast. Choose one, depending on what the user is about to
|
|
381
|
+
- `business_connection_id` (any): Unique identifier of the business connection on behalf of which the action will
|
|
382
|
+
- `message_thread_id` (any): Unique identifier for the target message thread; for supergroups only
|
|
383
|
+
|
|
384
|
+
---
|
|
385
|
+
|
|
386
|
+
### update_agent_task
|
|
387
|
+
|
|
388
|
+
**Title:** Update Agent Task
|
|
389
|
+
|
|
390
|
+
**Description:** Update an existing agent task
|
|
391
|
+
|
|
392
|
+
**Connection Required:** No
|
|
393
|
+
|
|
394
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
395
|
+
|
|
396
|
+
**Key Input Fields:**
|
|
397
|
+
- `task_id` (string): ID of the task to update
|
|
398
|
+
- `title` (any): New title for the task
|
|
399
|
+
- `description` (any): New description for the task
|
|
400
|
+
- `status` (any): New status for the task
|
|
401
|
+
- `priority` (any): New priority for the task
|
|
402
|
+
- ... and 1 more fields
|
|
403
|
+
|
|
404
|
+
---
|
|
405
|
+
|
|
406
|
+
## Web Research & Search
|
|
407
|
+
|
|
408
|
+
*Information gathering and web search capabilities*
|
|
409
|
+
|
|
410
|
+
**Node Types:** 6
|
|
411
|
+
|
|
412
|
+
### google_search
|
|
413
|
+
|
|
414
|
+
**Title:** Google Search
|
|
415
|
+
|
|
416
|
+
**Description:** Search Google for recent results.
|
|
417
|
+
|
|
418
|
+
**Connection Required:** PixelML Connection (Required)
|
|
419
|
+
|
|
420
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
421
|
+
|
|
422
|
+
**Key Input Fields:**
|
|
423
|
+
- `search_query` (string): What do you want to search for?
|
|
424
|
+
- `top_k` (integer): Number of top search results to return
|
|
425
|
+
|
|
426
|
+
---
|
|
427
|
+
|
|
428
|
+
### perplexity_search
|
|
429
|
+
|
|
430
|
+
**Title:** Perplexity Search
|
|
431
|
+
|
|
432
|
+
**Description:** Search with Perplexity AI models.
|
|
433
|
+
|
|
434
|
+
**Connection Required:** Perplexity Connection (Required)
|
|
435
|
+
|
|
436
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
437
|
+
|
|
438
|
+
**Key Input Fields:**
|
|
439
|
+
- `prompt` (string): The prompt to send to Perplexity.
|
|
440
|
+
- `model` (string): The model to use for chat completion.
|
|
441
|
+
- `temperature` (number): Controls randomness in the response. Higher values make the output more random,
|
|
442
|
+
|
|
443
|
+
---
|
|
444
|
+
|
|
445
|
+
### research_deep_research
|
|
446
|
+
|
|
447
|
+
**Title:** Deep Research
|
|
448
|
+
|
|
449
|
+
**Description:** Research a topic using a deep research agent.
|
|
450
|
+
|
|
451
|
+
**Connection Required:** OpenAI Connection (Required)
|
|
452
|
+
|
|
453
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
454
|
+
|
|
455
|
+
**Key Input Fields:**
|
|
456
|
+
- `topic` (string): The topic to research.
|
|
457
|
+
- `max_tool_calls` (integer): control the total number of tool calls (like to web search or an MCP server) tha
|
|
458
|
+
- `tools` (array): The tools to use for research. Read https://platform.openai.com/docs/guides/deep
|
|
459
|
+
|
|
460
|
+
---
|
|
461
|
+
|
|
462
|
+
### search_sound_in_yt_sound_lib
|
|
463
|
+
|
|
464
|
+
**Title:** Search sound in Youtube sound library
|
|
465
|
+
|
|
466
|
+
**Description:** Search sound in Youtube sound library.
|
|
467
|
+
|
|
468
|
+
**Connection Required:** No
|
|
469
|
+
|
|
470
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
471
|
+
|
|
472
|
+
**Key Input Fields:**
|
|
473
|
+
- `query` (string): The search query. Ocean, Tigers, Pears, etc.
|
|
474
|
+
- `num_results` (integer): Number of results to return
|
|
475
|
+
|
|
476
|
+
---
|
|
477
|
+
|
|
478
|
+
### search_video_in_pexels
|
|
479
|
+
|
|
480
|
+
**Title:** Search video in Pexels
|
|
481
|
+
|
|
482
|
+
**Description:** Search video in Pexels.
|
|
483
|
+
|
|
484
|
+
**Connection Required:** No
|
|
485
|
+
|
|
486
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
487
|
+
|
|
488
|
+
**Key Input Fields:**
|
|
489
|
+
- `query` (string): The search query. Ocean, Tigers, Pears, etc.
|
|
490
|
+
- `orientation` (any): Desired video orientation. The current supported orientations are: `landscape`,
|
|
491
|
+
- `size` (any): Minimum video size. The current supported sizes are: `large`(4K), `medium`(Full
|
|
492
|
+
- `page` (any): The page number you are requesting.
|
|
493
|
+
- `per_page` (any): Number of items per page.
|
|
494
|
+
|
|
495
|
+
---
|
|
496
|
+
|
|
497
|
+
### tavily_search
|
|
498
|
+
|
|
499
|
+
**Title:** Tavily Search
|
|
500
|
+
|
|
501
|
+
**Description:** Search the web using Tavily's AI-powered search engine
|
|
502
|
+
|
|
503
|
+
**Connection Required:** Tavily Connection (Required)
|
|
504
|
+
|
|
505
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
506
|
+
|
|
507
|
+
**Key Input Fields:**
|
|
508
|
+
- `query` (string): The search query to execute using Tavily
|
|
509
|
+
- `max_results` (integer): Maximum number of search results to return
|
|
510
|
+
- `topic` (string): Category of the search
|
|
511
|
+
- `include_answer` (boolean): Include a short answer to the original query in results
|
|
512
|
+
- `include_raw_content` (boolean): Include cleaned and parsed HTML of each search result
|
|
513
|
+
- ... and 5 more fields
|
|
514
|
+
|
|
515
|
+
---
|
|
516
|
+
|
|
517
|
+
## Web Scraping
|
|
518
|
+
|
|
519
|
+
*Extract data from websites and web pages*
|
|
520
|
+
|
|
521
|
+
**Node Types:** 9
|
|
522
|
+
|
|
523
|
+
### firecrawl
|
|
524
|
+
|
|
525
|
+
**Title:** FireCrawl
|
|
526
|
+
|
|
527
|
+
**Description:** FireCrawl
|
|
528
|
+
|
|
529
|
+
**Connection Required:** No
|
|
530
|
+
|
|
531
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
532
|
+
|
|
533
|
+
**Key Input Fields:**
|
|
534
|
+
- `url` (string): URL to crawl.
|
|
535
|
+
- `prompt` (any): The prompt to use for the extraction without a schema.
|
|
536
|
+
|
|
537
|
+
---
|
|
538
|
+
|
|
539
|
+
### firecrawl_crawl
|
|
540
|
+
|
|
541
|
+
**Title:** Firecrawl Crawl
|
|
542
|
+
|
|
543
|
+
**Description:** Crawls a URL and all its accessible subpages, outputting the content from each page.
|
|
544
|
+
|
|
545
|
+
**Connection Required:** Firecrawl Connection (Required)
|
|
546
|
+
|
|
547
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
548
|
+
|
|
549
|
+
**Key Input Fields:**
|
|
550
|
+
- `url` (string): The URL to crawl.
|
|
551
|
+
- `ignore_sitemap` (boolean): Ignore the website sitemap when crawling.
|
|
552
|
+
- `crawl_entire_website` (boolean): Crawl the entire domain. Enables the crawler to navigate from a specific URL to
|
|
553
|
+
- `limit` (integer): Maximum number of pages to crawl. Maximum is 100.
|
|
554
|
+
- `max_depth` (any): Maximum depth to crawl. Maximum is 100. If not specified, the crawler will crawl
|
|
555
|
+
- ... and 3 more fields
|
|
556
|
+
|
|
557
|
+
---
|
|
558
|
+
|
|
559
|
+
### firecrawl_extract
|
|
560
|
+
|
|
561
|
+
**Title:** Firecrawl Extract
|
|
562
|
+
|
|
563
|
+
**Description:** Extract data from a website using Firecrawl.
|
|
564
|
+
|
|
565
|
+
**Connection Required:** Firecrawl Connection (Required)
|
|
566
|
+
|
|
567
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
568
|
+
|
|
569
|
+
**Key Input Fields:**
|
|
570
|
+
- `urls` (array): The URLs to extract from.
|
|
571
|
+
- `prompt` (any): The prompt to use for the extract.
|
|
572
|
+
- `schema` (any): The schema to use for the extract.
|
|
573
|
+
- `enable_web_search` (boolean): When true, extraction can follow links outside the specified domain.
|
|
574
|
+
|
|
575
|
+
---
|
|
576
|
+
|
|
577
|
+
### firecrawl_map
|
|
578
|
+
|
|
579
|
+
**Title:** Firecrawl Map
|
|
580
|
+
|
|
581
|
+
**Description:** Attempts to output all website's urls in a few seconds.
|
|
582
|
+
|
|
583
|
+
**Connection Required:** Firecrawl Connection (Required)
|
|
584
|
+
|
|
585
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
586
|
+
|
|
587
|
+
**Key Input Fields:**
|
|
588
|
+
- `url` (string): The URL to scrape.
|
|
589
|
+
- `search` (any): Use the search feature to find URLs relevant to your query. For example, enterin
|
|
590
|
+
- `include_subdomains` (boolean): Include subdomains of the url in the result such as docs.*, blog.*, etc.
|
|
591
|
+
- `ignore_sitemap` (boolean): Ignore the website sitemap when mapping.
|
|
592
|
+
- `limit` (integer): The maximum number of URLs to return. Maximum is 5000.
|
|
593
|
+
|
|
594
|
+
---
|
|
595
|
+
|
|
596
|
+
### firecrawl_scrape
|
|
597
|
+
|
|
598
|
+
**Title:** Firecrawl Scrape
|
|
599
|
+
|
|
600
|
+
**Description:** Scrape a website using Firecrawl.
|
|
601
|
+
|
|
602
|
+
**Connection Required:** Firecrawl Connection (Required)
|
|
603
|
+
|
|
604
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
605
|
+
|
|
606
|
+
**Key Input Fields:**
|
|
607
|
+
- `url` (string): The URL to scrape.
|
|
608
|
+
- `format` (array): The format to use for the scrape.
|
|
609
|
+
- `json_options` (object): The options to use for the JSON scrape.
|
|
610
|
+
|
|
611
|
+
---
|
|
612
|
+
|
|
613
|
+
### linkedin_scrape_company
|
|
614
|
+
|
|
615
|
+
**Title:** Get a LinkedIn Company
|
|
616
|
+
|
|
617
|
+
**Description:** Fetch a LinkedIn Company
|
|
618
|
+
|
|
619
|
+
**Connection Required:** PixelML Connection (Required)
|
|
620
|
+
|
|
621
|
+
**Cost:** 4 credits (PML: $0.02)
|
|
622
|
+
|
|
623
|
+
**Key Input Fields:**
|
|
624
|
+
- `company_url` (string): The URL of the LinkedIn company to scrape.
|
|
625
|
+
|
|
626
|
+
---
|
|
627
|
+
|
|
628
|
+
### linkedin_scrape_profile
|
|
629
|
+
|
|
630
|
+
**Title:** Get a LinkedIn Profile
|
|
631
|
+
|
|
632
|
+
**Description:** Fetch a LinkedIn Profile
|
|
633
|
+
|
|
634
|
+
**Connection Required:** PixelML Connection (Required)
|
|
635
|
+
|
|
636
|
+
**Cost:** 4 credits (PML: $0.02)
|
|
637
|
+
|
|
638
|
+
**Key Input Fields:**
|
|
639
|
+
- `profile_url` (string): The URL of the LinkedIn profile to scrape.
|
|
640
|
+
|
|
641
|
+
---
|
|
642
|
+
|
|
643
|
+
### web_scraping
|
|
644
|
+
|
|
645
|
+
**Title:** Web Scraping
|
|
646
|
+
|
|
647
|
+
**Description:** Scrape content from a web page
|
|
648
|
+
|
|
649
|
+
**Connection Required:** No
|
|
650
|
+
|
|
651
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
652
|
+
|
|
653
|
+
**Key Input Fields:**
|
|
654
|
+
- `web_url` (string): Web URL to scrape.
|
|
655
|
+
- `scraping_type` (string): Type of scraping to perform.
|
|
656
|
+
- `max_tokens` (integer): The maximum number of tokens to scrape.
|
|
657
|
+
- `tags_to_extract` (array): List of tags to extract from the HTML.
|
|
658
|
+
|
|
659
|
+
---
|
|
660
|
+
|
|
661
|
+
### web_scraping_apify
|
|
662
|
+
|
|
663
|
+
**Title:** Web Scraping using Apify
|
|
664
|
+
|
|
665
|
+
**Description:** Web Scraping using Apify
|
|
666
|
+
|
|
667
|
+
**Connection Required:** PixelML Connection (Required)
|
|
668
|
+
|
|
669
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
670
|
+
|
|
671
|
+
**Key Input Fields:**
|
|
672
|
+
- `web_urls` (array): List of Web URL to scrape.
|
|
673
|
+
- `crawler_type` (string): Crawling engine to use. Default is playwright:firefox.
|
|
674
|
+
- `max_crawl_pages` (integer): The maximum number pages to crawl. It includes the start URLs, pagination pages,
|
|
675
|
+
- `max_crawl_depth` (integer): The maximum number of links starting from the start URL that the crawler will re
|
|
676
|
+
- `max_tokens_per_url` (integer): Maximum number of tokens to scrape per URL. Default is 10000.
|
|
677
|
+
- ... and 2 more fields
|
|
678
|
+
|
|
679
|
+
---
|
|
680
|
+
|
|
681
|
+
## Data Extraction & Processing
|
|
682
|
+
|
|
683
|
+
*Structure and process unstructured data*
|
|
684
|
+
|
|
685
|
+
**Node Types:** 5
|
|
686
|
+
|
|
687
|
+
### extract_content
|
|
688
|
+
|
|
689
|
+
**Title:** Extract Content
|
|
690
|
+
|
|
691
|
+
**Description:** Extract structured content from text using a specified schema.
|
|
692
|
+
|
|
693
|
+
**Connection Required:** No
|
|
694
|
+
|
|
695
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
696
|
+
|
|
697
|
+
**Key Input Fields:**
|
|
698
|
+
- `extract_from` (string): The content to extract from.
|
|
699
|
+
- `extract_schema` (object): A json string represent schema for the extracted content.
|
|
700
|
+
- `model` (any): The LLM model to use for extracting content.
|
|
701
|
+
|
|
702
|
+
---
|
|
703
|
+
|
|
704
|
+
### json_to_google_sheet
|
|
705
|
+
|
|
706
|
+
**Title:** JSON to Google Sheet
|
|
707
|
+
|
|
708
|
+
**Description:** Create a Google Sheet from JSON.
|
|
709
|
+
|
|
710
|
+
**Connection Required:** No
|
|
711
|
+
|
|
712
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
713
|
+
|
|
714
|
+
**Key Input Fields:**
|
|
715
|
+
- `title` (string): Title of the Google Sheet.
|
|
716
|
+
- `data` (string): Data to be inserted into the Google Sheet. Data can be a list of JSON objects or
|
|
717
|
+
- `share_with` (any): Emails to share the Google Sheet with. If not provided, the Google Sheet will be
|
|
718
|
+
- `role` (string): Role of the user to be shared with.
|
|
719
|
+
- `prem_type` (string): The account type to be shared with. Default is anyone.
|
|
720
|
+
|
|
721
|
+
---
|
|
722
|
+
|
|
723
|
+
### optical_character_recognition
|
|
724
|
+
|
|
725
|
+
**Title:** Optical Character Recognition
|
|
726
|
+
|
|
727
|
+
**Description:** Extract text and structure from documents and images using OCR
|
|
728
|
+
|
|
729
|
+
**Connection Required:** PixelML Connection (Required)
|
|
730
|
+
|
|
731
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
732
|
+
|
|
733
|
+
**Key Input Fields:**
|
|
734
|
+
- `type` (any): Type of document to process
|
|
735
|
+
- `url` (string): URL of the document or image to process
|
|
736
|
+
|
|
737
|
+
---
|
|
738
|
+
|
|
739
|
+
### string_to_json
|
|
740
|
+
|
|
741
|
+
**Title:** Convert String to JSON
|
|
742
|
+
|
|
743
|
+
**Description:** Convert a string representation to a JSON object.
|
|
744
|
+
|
|
745
|
+
**Connection Required:** No
|
|
746
|
+
|
|
747
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
748
|
+
|
|
749
|
+
**Key Input Fields:**
|
|
750
|
+
- `string_to_convert` (string): The string to convert to JSON.
|
|
751
|
+
|
|
752
|
+
---
|
|
753
|
+
|
|
754
|
+
### text_extract
|
|
755
|
+
|
|
756
|
+
**Title:** Text Extract
|
|
757
|
+
|
|
758
|
+
**Description:** Extract text from various file formats including PDFs and images.
|
|
759
|
+
|
|
760
|
+
**Connection Required:** PixelML Connection (Required)
|
|
761
|
+
|
|
762
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
763
|
+
|
|
764
|
+
**Key Input Fields:**
|
|
765
|
+
- `file` (string): File to extract text from
|
|
766
|
+
|
|
767
|
+
---
|
|
768
|
+
|
|
769
|
+
## Image Generation & Processing
|
|
770
|
+
|
|
771
|
+
*Create, edit, and analyze images*
|
|
772
|
+
|
|
773
|
+
**Node Types:** 13
|
|
774
|
+
|
|
775
|
+
### describe_image
|
|
776
|
+
|
|
777
|
+
**Title:** Analyze Image
|
|
778
|
+
|
|
779
|
+
**Description:** Use AI vision models to analyze and describe image content
|
|
780
|
+
|
|
781
|
+
**Connection Required:** PixelML Connection (Required)
|
|
782
|
+
|
|
783
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
784
|
+
|
|
785
|
+
**Key Input Fields:**
|
|
786
|
+
- `image_url` (string): The URL of the image to analyze and describe
|
|
787
|
+
- `model` (string): The AI vision model to use for image analysis. Gemini Flash offers fast, efficie
|
|
788
|
+
- `prompt` (string): Instructions for how the AI should analyze and describe the image
|
|
789
|
+
|
|
790
|
+
---
|
|
791
|
+
|
|
792
|
+
### enhance_image_v2
|
|
793
|
+
|
|
794
|
+
**Title:** Enhance Image V2
|
|
795
|
+
|
|
796
|
+
**Description:** Image enhancement version 2.0 utilizes artificial intelligence to improve the quality of your photos. It can increase resolution, sharpen details, and correct colors, all while preserving the original content of your image. This can be especially helpful for restoring old photos or enlarging low-resolution images
|
|
797
|
+
|
|
798
|
+
**Connection Required:** PixelML Connection (Required)
|
|
799
|
+
|
|
800
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
801
|
+
|
|
802
|
+
**Key Input Fields:**
|
|
803
|
+
- `image_url` (string): Image url
|
|
804
|
+
|
|
805
|
+
---
|
|
806
|
+
|
|
807
|
+
### generate_image
|
|
808
|
+
|
|
809
|
+
**Title:** Generate Image
|
|
810
|
+
|
|
811
|
+
**Description:** Use AI to generate images from your imagination. Simply describe what you want to see, and watch the AI bring it to life.
|
|
812
|
+
|
|
813
|
+
**Connection Required:** PixelML Connection (Required)
|
|
814
|
+
|
|
815
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
816
|
+
|
|
817
|
+
**Key Input Fields:**
|
|
818
|
+
- `provider` (string): The provider to use for the image generation. Default is Runware
|
|
819
|
+
- `prompt` (string): What you wish to see in the output image. A strong, descriptive prompt that clea
|
|
820
|
+
- `negative_prompt` (string): A blurb of text describing what you do not wish to see in the output image.
|
|
821
|
+
- `aspect_ratio` (string): The aspect ratio of the generated image.
|
|
822
|
+
- `model_id` (any): The model ID to use for the image generation.
|
|
823
|
+
- ... and 1 more fields
|
|
824
|
+
|
|
825
|
+
---
|
|
826
|
+
|
|
827
|
+
### generate_image_v2
|
|
828
|
+
|
|
829
|
+
**Title:** Generate Image V2
|
|
830
|
+
|
|
831
|
+
**Description:** Use AI to generate images from your imagination. Simply describe what you want to see, and watch the AI bring it to life.
|
|
832
|
+
|
|
833
|
+
**Connection Required:** PixelML Connection (Required)
|
|
834
|
+
|
|
835
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
836
|
+
|
|
837
|
+
**Key Input Fields:**
|
|
838
|
+
- `prompt` (string): What you wish to see in the output image. A strong, descriptive prompt that clea
|
|
839
|
+
- `negative_prompt` (string): A blurb of text describing what you do not wish to see in the output image.
|
|
840
|
+
- `guidance_scale` (number): The guidance scale of the generated image.
|
|
841
|
+
- `steps` (integer): The number of steps to take in the generated image.
|
|
842
|
+
- `batch_size` (integer): The number of images to generate in a batch.
|
|
843
|
+
- ... and 2 more fields
|
|
844
|
+
|
|
845
|
+
---
|
|
846
|
+
|
|
847
|
+
### html_to_image
|
|
848
|
+
|
|
849
|
+
**Title:** HTML to Image
|
|
850
|
+
|
|
851
|
+
**Description:** Convert HTML content to an image.
|
|
852
|
+
|
|
853
|
+
**Connection Required:** No
|
|
854
|
+
|
|
855
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
856
|
+
|
|
857
|
+
**Key Input Fields:**
|
|
858
|
+
- `html_content` (string): The HTML content to convert to an image
|
|
859
|
+
- `width` (integer): Width of the output image in pixels
|
|
860
|
+
- `height` (any): Height of the output image in pixels (optional - will be calculated from content
|
|
861
|
+
- `shared_messages` (any): Shared messages from the node
|
|
862
|
+
|
|
863
|
+
---
|
|
864
|
+
|
|
865
|
+
### image_compare
|
|
866
|
+
|
|
867
|
+
**Title:** Image Compare
|
|
868
|
+
|
|
869
|
+
**Description:** Compare two images side by side.
|
|
870
|
+
|
|
871
|
+
**Connection Required:** No
|
|
872
|
+
|
|
873
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
874
|
+
|
|
875
|
+
**Key Input Fields:**
|
|
876
|
+
- `first_image` (string): First image url
|
|
877
|
+
- `second_image` (string): Second image url
|
|
878
|
+
|
|
879
|
+
---
|
|
880
|
+
|
|
881
|
+
### image_to_image
|
|
882
|
+
|
|
883
|
+
**Title:** Image to Image
|
|
884
|
+
|
|
885
|
+
**Description:** Use AI to generate images from your imagination. Simply describe what you want to see, and watch the AI bring it to life.
|
|
886
|
+
|
|
887
|
+
**Connection Required:** PixelML Connection (Required)
|
|
888
|
+
|
|
889
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
890
|
+
|
|
891
|
+
**Key Input Fields:**
|
|
892
|
+
- `source_image` (string): The image to use as the source for the image to image generation.
|
|
893
|
+
- `prompt` (string): What you wish to see in the output image. A strong, descriptive prompt that clea
|
|
894
|
+
- `prompt_2` (any): A second prompt to guide the image generation.
|
|
895
|
+
- `negative_prompt` (string): A blurb of text describing what you do not wish to see in the output image.
|
|
896
|
+
- `guidance_scale` (number): The guidance scale of the generated image.
|
|
897
|
+
- ... and 7 more fields
|
|
898
|
+
|
|
899
|
+
---
|
|
900
|
+
|
|
901
|
+
### image_to_video
|
|
902
|
+
|
|
903
|
+
**Title:** Image to video
|
|
904
|
+
|
|
905
|
+
**Description:** Image to video
|
|
906
|
+
|
|
907
|
+
**Connection Required:** PixelML Connection (Required)
|
|
908
|
+
|
|
909
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
910
|
+
|
|
911
|
+
**Key Input Fields:**
|
|
912
|
+
- `model` (string): Model
|
|
913
|
+
- `prompt` (string): Prompt
|
|
914
|
+
- `image` (string): Image
|
|
915
|
+
- `negative_prompt` (any): Negative prompt
|
|
916
|
+
- `size` (string): Size (Only for Pixel M)
|
|
917
|
+
- ... and 1 more fields
|
|
918
|
+
|
|
919
|
+
---
|
|
920
|
+
|
|
921
|
+
### image_to_video_v2
|
|
922
|
+
|
|
923
|
+
**Title:** Image to video v2
|
|
924
|
+
|
|
925
|
+
**Description:** Image to video v2
|
|
926
|
+
|
|
927
|
+
**Connection Required:** PixelML Connection (Required)
|
|
928
|
+
|
|
929
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
930
|
+
|
|
931
|
+
**Key Input Fields:**
|
|
932
|
+
- `prompt` (string): Prompt
|
|
933
|
+
- `image` (string): Start image of the video.
|
|
934
|
+
- `end_image` (any): End image of the video. If provided, the video will be generated by interpolatin
|
|
935
|
+
- `negative_prompt` (any): Negative prompt
|
|
936
|
+
- `width` (integer): Width
|
|
937
|
+
- ... and 5 more fields
|
|
938
|
+
|
|
939
|
+
---
|
|
940
|
+
|
|
941
|
+
### image_to_video_v3
|
|
942
|
+
|
|
943
|
+
**Title:** Image to video v3
|
|
944
|
+
|
|
945
|
+
**Description:** Image to video v3
|
|
946
|
+
|
|
947
|
+
**Connection Required:** PixelML Connection (Required)
|
|
948
|
+
|
|
949
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
950
|
+
|
|
951
|
+
**Key Input Fields:**
|
|
952
|
+
- `prompt` (string): Prompt
|
|
953
|
+
- `image` (string): Start image of the video.
|
|
954
|
+
- `negative_prompt` (any): Negative prompt
|
|
955
|
+
- `steps` (integer): Steps
|
|
956
|
+
- `guidance_scale` (integer): Guidance scale
|
|
957
|
+
- ... and 1 more fields
|
|
958
|
+
|
|
959
|
+
---
|
|
960
|
+
|
|
961
|
+
### pml_edit_image
|
|
962
|
+
|
|
963
|
+
**Title:** Edit Image
|
|
964
|
+
|
|
965
|
+
**Description:** Edit an image using a prompt.
|
|
966
|
+
|
|
967
|
+
**Connection Required:** PixelML Connection (Required)
|
|
968
|
+
|
|
969
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
970
|
+
|
|
971
|
+
**Key Input Fields:**
|
|
972
|
+
- `model` (string): The model to use for the edit image. Default is Nano Banana
|
|
973
|
+
- `prompt` (string): The prompt to edit the image.
|
|
974
|
+
- `images` (array): The images to use for the chat.
|
|
975
|
+
- `aspect_ratio` (string): The aspect ratio to use for the edit image.
|
|
976
|
+
- `temperature` (number): Controls randomness: Lowering results in less random completions. As the tempera
|
|
977
|
+
- ... and 2 more fields
|
|
978
|
+
|
|
979
|
+
---
|
|
980
|
+
|
|
981
|
+
### straico_image_generate
|
|
982
|
+
|
|
983
|
+
**Title:** Run Straico Image Generation
|
|
984
|
+
|
|
985
|
+
**Description:** Run a image generation using the Straico API.
|
|
986
|
+
|
|
987
|
+
**Connection Required:** Straico Connection (Required)
|
|
988
|
+
|
|
989
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
990
|
+
|
|
991
|
+
**Key Input Fields:**
|
|
992
|
+
- `model` (string): The AI model to use for image generation
|
|
993
|
+
- `description` (string): A detailed textual description of the image to be generated
|
|
994
|
+
- `size` (string): The desired image dimensions
|
|
995
|
+
- `variations` (integer): Number of images to generate
|
|
996
|
+
|
|
997
|
+
---
|
|
998
|
+
|
|
999
|
+
### telegram_send_photo
|
|
1000
|
+
|
|
1001
|
+
**Title:** Send Telegram Photo
|
|
1002
|
+
|
|
1003
|
+
**Description:** Send a photo to a Telegram chat.
|
|
1004
|
+
|
|
1005
|
+
**Connection Required:** Telegram Bot Connection (Required)
|
|
1006
|
+
|
|
1007
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1008
|
+
|
|
1009
|
+
**Key Input Fields:**
|
|
1010
|
+
- `chat_id` (string): Unique identifier for the target chat or username of the target channel (in the
|
|
1011
|
+
- `photo` (string): Photo to send. Pass a file_id as String to send a photo that exists on the Teleg
|
|
1012
|
+
- `business_connection_id` (any): Unique identifier of the business connection on behalf of which the message will
|
|
1013
|
+
- `message_thread_id` (any): Unique identifier for the target message thread (topic) of the forum; for forum
|
|
1014
|
+
- `caption` (any): Photo caption (may also be used when resending photos by file_id), 0-1024 charac
|
|
1015
|
+
- ... and 10 more fields
|
|
1016
|
+
|
|
1017
|
+
---
|
|
1018
|
+
|
|
1019
|
+
## Video Processing
|
|
1020
|
+
|
|
1021
|
+
*Create and edit video content*
|
|
1022
|
+
|
|
1023
|
+
**Node Types:** 14
|
|
1024
|
+
|
|
1025
|
+
### create_video
|
|
1026
|
+
|
|
1027
|
+
**Title:** Create video from topic
|
|
1028
|
+
|
|
1029
|
+
**Description:** Create video from topic
|
|
1030
|
+
|
|
1031
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1032
|
+
|
|
1033
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
1034
|
+
|
|
1035
|
+
**Key Input Fields:**
|
|
1036
|
+
- `brief` (any): Brief description of the video. Required if transcript is not provided.
|
|
1037
|
+
- `images` (any): List of image URLs, used to create the video. If not provided, our AI will find
|
|
1038
|
+
- `transcript` (any): Transcript of the video. If not provided, our AI will generate the transcript ba
|
|
1039
|
+
- `voice_over_language` (any): Voice over id. If not provided, our AI will choose the most suitable voice based
|
|
1040
|
+
- `background_music` (any): Background music. If not provided, our AI will choose the most suitable backgrou
|
|
1041
|
+
- ... and 2 more fields
|
|
1042
|
+
|
|
1043
|
+
---
|
|
1044
|
+
|
|
1045
|
+
### edit_video
|
|
1046
|
+
|
|
1047
|
+
**Title:** Edit video
|
|
1048
|
+
|
|
1049
|
+
**Description:** Edit video
|
|
1050
|
+
|
|
1051
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1052
|
+
|
|
1053
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
1054
|
+
|
|
1055
|
+
**Key Input Fields:**
|
|
1056
|
+
- `brief` (string): Brief description of the video.
|
|
1057
|
+
- `images` (any): List of image URLs, used to create the video. If not provided, our AI will find
|
|
1058
|
+
- `existing_video_config` (string): Existing Video Config
|
|
1059
|
+
- `existing_video_gen_info` (string): Existing Video Gen Info
|
|
1060
|
+
- `change_request` (string): Change Request
|
|
1061
|
+
|
|
1062
|
+
---
|
|
1063
|
+
|
|
1064
|
+
### google_gen_ai_check_veo_video_status
|
|
1065
|
+
|
|
1066
|
+
**Title:** Check Veo Video Status
|
|
1067
|
+
|
|
1068
|
+
**Description:** Check the status of a Veo video generation operation and retrieve the result if completed.
|
|
1069
|
+
|
|
1070
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1071
|
+
|
|
1072
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1073
|
+
|
|
1074
|
+
**Key Input Fields:**
|
|
1075
|
+
- `operation_id` (string): The operation ID returned from the video generation request.
|
|
1076
|
+
|
|
1077
|
+
---
|
|
1078
|
+
|
|
1079
|
+
### google_gen_ai_generate_veo_video
|
|
1080
|
+
|
|
1081
|
+
**Title:** Generate Veo Video
|
|
1082
|
+
|
|
1083
|
+
**Description:** Generate videos using Google's Veo video generation models.
|
|
1084
|
+
|
|
1085
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1086
|
+
|
|
1087
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1088
|
+
|
|
1089
|
+
**Key Input Fields:**
|
|
1090
|
+
- `model` (any): The Veo model to use for video generation.
|
|
1091
|
+
- `prompt` (string): The prompt describing the video to generate.
|
|
1092
|
+
- `aspect_ratio` (any): The aspect ratio for the generated video.
|
|
1093
|
+
- `resolution` (any): The resolution for the generated video.
|
|
1094
|
+
- `person_generation` (any): Controls person generation in videos.
|
|
1095
|
+
- ... and 3 more fields
|
|
1096
|
+
|
|
1097
|
+
---
|
|
1098
|
+
|
|
1099
|
+
### render_audiogram_video
|
|
1100
|
+
|
|
1101
|
+
**Title:** Render audiogram video
|
|
1102
|
+
|
|
1103
|
+
**Description:** Render audiogram video
|
|
1104
|
+
|
|
1105
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1106
|
+
|
|
1107
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
1108
|
+
|
|
1109
|
+
**Key Input Fields:**
|
|
1110
|
+
- `cover_img` (string): Cover image
|
|
1111
|
+
- `title` (string): Video title
|
|
1112
|
+
- `title_color` (string): Title color
|
|
1113
|
+
- `subtitle_text_color` (string): Subtitle text color
|
|
1114
|
+
- `subtitle_line_per_page` (integer): Subtitle line per page
|
|
1115
|
+
- ... and 6 more fields
|
|
1116
|
+
|
|
1117
|
+
---
|
|
1118
|
+
|
|
1119
|
+
### render_tiktok_video
|
|
1120
|
+
|
|
1121
|
+
**Title:** Render tiktok video
|
|
1122
|
+
|
|
1123
|
+
**Description:** Render tiktok video
|
|
1124
|
+
|
|
1125
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1126
|
+
|
|
1127
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
1128
|
+
|
|
1129
|
+
**Key Input Fields:**
|
|
1130
|
+
- `video` (string): Video to use for rendering
|
|
1131
|
+
- `voice` (any): Voice
|
|
1132
|
+
- `voice_volume` (any): Voice volume
|
|
1133
|
+
- `audio` (any): Audio to use for rendering
|
|
1134
|
+
- `audio_volume` (any): Audio volume
|
|
1135
|
+
- ... and 1 more fields
|
|
1136
|
+
|
|
1137
|
+
---
|
|
1138
|
+
|
|
1139
|
+
### render_video
|
|
1140
|
+
|
|
1141
|
+
**Title:** Render video
|
|
1142
|
+
|
|
1143
|
+
**Description:** Render video
|
|
1144
|
+
|
|
1145
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1146
|
+
|
|
1147
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
1148
|
+
|
|
1149
|
+
**Key Input Fields:**
|
|
1150
|
+
- `video_config` (string): Video configuration
|
|
1151
|
+
- `file_name` (any): File name
|
|
1152
|
+
|
|
1153
|
+
---
|
|
1154
|
+
|
|
1155
|
+
### render_video_with_preset
|
|
1156
|
+
|
|
1157
|
+
**Title:** Render video with preset
|
|
1158
|
+
|
|
1159
|
+
**Description:** Render video preset
|
|
1160
|
+
|
|
1161
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1162
|
+
|
|
1163
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
1164
|
+
|
|
1165
|
+
**Key Input Fields:**
|
|
1166
|
+
- `images` (any): List of images to use for rendering
|
|
1167
|
+
- `caption` (string): Url to a srt file containing the caption
|
|
1168
|
+
- `voice` (any): Url to voice file
|
|
1169
|
+
- `voice_volume` (any): Voice volume
|
|
1170
|
+
- `audio` (any): Url to audio file
|
|
1171
|
+
- ... and 3 more fields
|
|
1172
|
+
|
|
1173
|
+
---
|
|
1174
|
+
|
|
1175
|
+
### telegram_send_video
|
|
1176
|
+
|
|
1177
|
+
**Title:** Send Telegram Video
|
|
1178
|
+
|
|
1179
|
+
**Description:** Send a video to a Telegram chat.
|
|
1180
|
+
|
|
1181
|
+
**Connection Required:** Telegram Bot Connection (Required)
|
|
1182
|
+
|
|
1183
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1184
|
+
|
|
1185
|
+
**Key Input Fields:**
|
|
1186
|
+
- `chat_id` (string): Unique identifier for the target chat or username of the target channel (in the
|
|
1187
|
+
- `video` (string): Video to send. Pass a file_id as String to send a video that exists on the Teleg
|
|
1188
|
+
- `business_connection_id` (any): Unique identifier of the business connection on behalf of which the message will
|
|
1189
|
+
- `message_thread_id` (any): Unique identifier for the target message thread (topic) of the forum; for forum
|
|
1190
|
+
- `duration` (any): Duration of sent video in seconds
|
|
1191
|
+
- ... and 17 more fields
|
|
1192
|
+
|
|
1193
|
+
---
|
|
1194
|
+
|
|
1195
|
+
### text_to_video
|
|
1196
|
+
|
|
1197
|
+
**Title:** Text to video
|
|
1198
|
+
|
|
1199
|
+
**Description:** Text to video
|
|
1200
|
+
|
|
1201
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1202
|
+
|
|
1203
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
1204
|
+
|
|
1205
|
+
**Key Input Fields:**
|
|
1206
|
+
- `model` (string): Model
|
|
1207
|
+
- `prompt` (string): Prompt
|
|
1208
|
+
- `negative_prompt` (any): Negative prompt
|
|
1209
|
+
- `steps` (integer): Steps
|
|
1210
|
+
- `guidance_scale` (integer): Guidance scale
|
|
1211
|
+
- ... and 3 more fields
|
|
1212
|
+
|
|
1213
|
+
---
|
|
1214
|
+
|
|
1215
|
+
### tiktok_upload_video
|
|
1216
|
+
|
|
1217
|
+
**Title:** Upload Video to TikTok
|
|
1218
|
+
|
|
1219
|
+
**Description:** Upload a video to TikTok
|
|
1220
|
+
|
|
1221
|
+
**Connection Required:** TikTok Connection (Required)
|
|
1222
|
+
|
|
1223
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1224
|
+
|
|
1225
|
+
**Key Input Fields:**
|
|
1226
|
+
- `video_url` (string): The URL to the video to upload.
|
|
1227
|
+
|
|
1228
|
+
---
|
|
1229
|
+
|
|
1230
|
+
### video_faceswap
|
|
1231
|
+
|
|
1232
|
+
**Title:** Video faceswap
|
|
1233
|
+
|
|
1234
|
+
**Description:** Video faceswap
|
|
1235
|
+
|
|
1236
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1237
|
+
|
|
1238
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
1239
|
+
|
|
1240
|
+
**Key Input Fields:**
|
|
1241
|
+
- `source_image_url` (string): Source image URL
|
|
1242
|
+
- `video_input_url` (string): Video input URL
|
|
1243
|
+
|
|
1244
|
+
---
|
|
1245
|
+
|
|
1246
|
+
### video_faceswap_pro
|
|
1247
|
+
|
|
1248
|
+
**Title:** Video Faceswap Pro
|
|
1249
|
+
|
|
1250
|
+
**Description:** Advanced face swapping for videos with support for multiple faces and highest quality output
|
|
1251
|
+
|
|
1252
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1253
|
+
|
|
1254
|
+
**Cost:** 4 credits (PML: $0.5)
|
|
1255
|
+
|
|
1256
|
+
**Key Input Fields:**
|
|
1257
|
+
- `source_image_urls` (array): Source image URLs
|
|
1258
|
+
- `video_input_url` (string): Video input URL
|
|
1259
|
+
- `face_detect_info` (object): Face detection information containing crop_arr, crop_landmarks, and face_index d
|
|
1260
|
+
|
|
1261
|
+
---
|
|
1262
|
+
|
|
1263
|
+
### youtube_upload_video
|
|
1264
|
+
|
|
1265
|
+
**Title:** Upload Video to YouTube
|
|
1266
|
+
|
|
1267
|
+
**Description:** Upload a video to YouTube using the YouTube Data API
|
|
1268
|
+
|
|
1269
|
+
**Connection Required:** YouTube Connection (Required)
|
|
1270
|
+
|
|
1271
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1272
|
+
|
|
1273
|
+
**Key Input Fields:**
|
|
1274
|
+
- `file_path` (string): Path to the video file to upload
|
|
1275
|
+
- `title` (string): Title of the video
|
|
1276
|
+
- `description` (string): Description of the video
|
|
1277
|
+
- `category` (string): Numeric video category ID. See https://developers.google.com/youtube/v3/docs/vid
|
|
1278
|
+
- `keywords` (string): Video keywords, comma separated
|
|
1279
|
+
- ... and 1 more fields
|
|
1280
|
+
|
|
1281
|
+
---
|
|
1282
|
+
|
|
1283
|
+
## Audio & Speech
|
|
1284
|
+
|
|
1285
|
+
*Voice synthesis, transcription, and audio processing*
|
|
1286
|
+
|
|
1287
|
+
**Node Types:** 6
|
|
1288
|
+
|
|
1289
|
+
### speech_to_text
|
|
1290
|
+
|
|
1291
|
+
**Title:** Speech to text
|
|
1292
|
+
|
|
1293
|
+
**Description:** Speech to text node.
|
|
1294
|
+
|
|
1295
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1296
|
+
|
|
1297
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1298
|
+
|
|
1299
|
+
**Key Input Fields:**
|
|
1300
|
+
- `provider` (any): Which provider to use for speech to text
|
|
1301
|
+
- `language` (any): Which language that the audio is in
|
|
1302
|
+
- `audio` (string): Audio file url to convert transcribe
|
|
1303
|
+
|
|
1304
|
+
---
|
|
1305
|
+
|
|
1306
|
+
### telegram_send_audio
|
|
1307
|
+
|
|
1308
|
+
**Title:** Send Telegram Audio
|
|
1309
|
+
|
|
1310
|
+
**Description:** Send an audio file to a Telegram chat.
|
|
1311
|
+
|
|
1312
|
+
**Connection Required:** Telegram Bot Connection (Required)
|
|
1313
|
+
|
|
1314
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1315
|
+
|
|
1316
|
+
**Key Input Fields:**
|
|
1317
|
+
- `chat_id` (string): Unique identifier for the target chat or username of the target channel (in the
|
|
1318
|
+
- `audio` (string): Audio file to send. Pass a file_id as String to send an audio file that exists o
|
|
1319
|
+
- `business_connection_id` (any): Unique identifier of the business connection on behalf of which the message will
|
|
1320
|
+
- `message_thread_id` (any): Unique identifier for the target message thread (topic) of the forum; for forum
|
|
1321
|
+
- `caption` (any): Audio caption, 0-1024 characters after entities parsing
|
|
1322
|
+
- ... and 12 more fields
|
|
1323
|
+
|
|
1324
|
+
---
|
|
1325
|
+
|
|
1326
|
+
### text_to_music
|
|
1327
|
+
|
|
1328
|
+
**Title:** Text to music
|
|
1329
|
+
|
|
1330
|
+
**Description:** Text to music node.
|
|
1331
|
+
|
|
1332
|
+
**Connection Required:** No
|
|
1333
|
+
|
|
1334
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1335
|
+
|
|
1336
|
+
**Key Input Fields:**
|
|
1337
|
+
- `prompt` (string): Prompt for the music generation.
|
|
1338
|
+
- `instrumental` (any): Create a song without lyrics.
|
|
1339
|
+
- `style` (string): Music style. For example: pop, rock, jazz, etc.
|
|
1340
|
+
- `title` (string): Title of the song.
|
|
1341
|
+
|
|
1342
|
+
---
|
|
1343
|
+
|
|
1344
|
+
### text_to_speech
|
|
1345
|
+
|
|
1346
|
+
**Title:** Text to speech
|
|
1347
|
+
|
|
1348
|
+
**Description:** Text to speech node.
|
|
1349
|
+
|
|
1350
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1351
|
+
|
|
1352
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1353
|
+
|
|
1354
|
+
**Key Input Fields:**
|
|
1355
|
+
- `voice` (any): Voice to use for text to speech
|
|
1356
|
+
- `text` (string): Text to convert to speech
|
|
1357
|
+
|
|
1358
|
+
---
|
|
1359
|
+
|
|
1360
|
+
### text_to_speech_custom
|
|
1361
|
+
|
|
1362
|
+
**Title:** Text to speech custom
|
|
1363
|
+
|
|
1364
|
+
**Description:** Text to speech custom node.
|
|
1365
|
+
|
|
1366
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1367
|
+
|
|
1368
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1369
|
+
|
|
1370
|
+
**Key Input Fields:**
|
|
1371
|
+
- `provider` (string): Provider
|
|
1372
|
+
- `text` (string): Text to convert to speech
|
|
1373
|
+
- `description` (string): Provide description of the output audio
|
|
1374
|
+
|
|
1375
|
+
---
|
|
1376
|
+
|
|
1377
|
+
### text_to_speech_voice_clone
|
|
1378
|
+
|
|
1379
|
+
**Title:** Text to speech with voice clone
|
|
1380
|
+
|
|
1381
|
+
**Description:** Convert text to speech with voice cloning across 32 languages.
|
|
1382
|
+
|
|
1383
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1384
|
+
|
|
1385
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
1386
|
+
|
|
1387
|
+
**Key Input Fields:**
|
|
1388
|
+
- `voice_id` (string): Voice ID
|
|
1389
|
+
- `text` (string): Text
|
|
1390
|
+
- `file_name` (any): File name
|
|
1391
|
+
|
|
1392
|
+
---
|
|
1393
|
+
|
|
1394
|
+
## Document Processing
|
|
1395
|
+
|
|
1396
|
+
*Work with documents, PDFs, and text formats*
|
|
1397
|
+
|
|
1398
|
+
**Node Types:** 2
|
|
1399
|
+
|
|
1400
|
+
### telegram_send_document
|
|
1401
|
+
|
|
1402
|
+
**Title:** Send Telegram Document
|
|
1403
|
+
|
|
1404
|
+
**Description:** Send a document to a Telegram chat.
|
|
1405
|
+
|
|
1406
|
+
**Connection Required:** Telegram Bot Connection (Required)
|
|
1407
|
+
|
|
1408
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1409
|
+
|
|
1410
|
+
**Key Input Fields:**
|
|
1411
|
+
- `chat_id` (string): Unique identifier for the target chat or username of the target channel (in the
|
|
1412
|
+
- `document` (string): File to send. Pass a file_id as String to send a file that exists on the Telegra
|
|
1413
|
+
- `business_connection_id` (any): Unique identifier of the business connection on behalf of which the message will
|
|
1414
|
+
- `message_thread_id` (any): Unique identifier for the target message thread (topic) of the forum; for forum
|
|
1415
|
+
- `thumbnail` (any): Thumbnail of the file sent; can be ignored if thumbnail generation for the file
|
|
1416
|
+
- ... and 10 more fields
|
|
1417
|
+
|
|
1418
|
+
---
|
|
1419
|
+
|
|
1420
|
+
### url_to_markdown
|
|
1421
|
+
|
|
1422
|
+
**Title:** URL to Markdown
|
|
1423
|
+
|
|
1424
|
+
**Description:** Convert a URL to markdown
|
|
1425
|
+
|
|
1426
|
+
**Connection Required:** No
|
|
1427
|
+
|
|
1428
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1429
|
+
|
|
1430
|
+
**Key Input Fields:**
|
|
1431
|
+
- `url` (string): It can be a url to a PDF/HTML/DOCX/DOC/XLSX/XLS/PPTX/PPT/TXT file or a website u
|
|
1432
|
+
|
|
1433
|
+
---
|
|
1434
|
+
|
|
1435
|
+
## Email & Communication
|
|
1436
|
+
|
|
1437
|
+
*Send emails and communicate*
|
|
1438
|
+
|
|
1439
|
+
**Node Types:** 5
|
|
1440
|
+
|
|
1441
|
+
### create_pinpoint_email_template
|
|
1442
|
+
|
|
1443
|
+
**Title:** Create PinPoint Email Template
|
|
1444
|
+
|
|
1445
|
+
**Description:** Create a new email template for Amazon Pinpoint.
|
|
1446
|
+
|
|
1447
|
+
**Connection Required:** No
|
|
1448
|
+
|
|
1449
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1450
|
+
|
|
1451
|
+
**Key Input Fields:**
|
|
1452
|
+
- `template_name` (string): The name of the message template.
|
|
1453
|
+
- `html` (string): The message body, in HTML format, to use in email messages that are based on the
|
|
1454
|
+
- `text` (string): The message body, in plain text format, to use in email messages that are based
|
|
1455
|
+
- `subject` (string): Email subject.
|
|
1456
|
+
- `template_description` (any): A custom description of the message template.
|
|
1457
|
+
|
|
1458
|
+
---
|
|
1459
|
+
|
|
1460
|
+
### generate_email_from_template
|
|
1461
|
+
|
|
1462
|
+
**Title:** Generate email from template
|
|
1463
|
+
|
|
1464
|
+
**Description:** Quickly create an email content by filling in pre-written content from a template.
|
|
1465
|
+
|
|
1466
|
+
**Connection Required:** No
|
|
1467
|
+
|
|
1468
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1469
|
+
|
|
1470
|
+
**Key Input Fields:**
|
|
1471
|
+
- `email_template` (string): The email template to use for generating the email content.
|
|
1472
|
+
- `email_content` (string): The email content to include in the template.
|
|
1473
|
+
- `hero_image` (string): The hero image to include in the email.
|
|
1474
|
+
- `cta` (string): The call to action link to include in the email.
|
|
1475
|
+
|
|
1476
|
+
---
|
|
1477
|
+
|
|
1478
|
+
### generate_email_from_template_fsi
|
|
1479
|
+
|
|
1480
|
+
**Title:** Generate email from template
|
|
1481
|
+
|
|
1482
|
+
**Description:** Quickly create an email content by filling in pre-written content from a template.
|
|
1483
|
+
|
|
1484
|
+
**Connection Required:** No
|
|
1485
|
+
|
|
1486
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1487
|
+
|
|
1488
|
+
**Key Input Fields:**
|
|
1489
|
+
- `email_template` (string): The email template to use for generating the email content.
|
|
1490
|
+
- `email_content` (string): The email content to include in the template.
|
|
1491
|
+
- `hero_image` (string): The hero image to include in the email.
|
|
1492
|
+
- `cta` (string): The call to action link to include in the email.
|
|
1493
|
+
|
|
1494
|
+
---
|
|
1495
|
+
|
|
1496
|
+
### generate_email_from_template_gxs
|
|
1497
|
+
|
|
1498
|
+
**Title:** Generate email from template
|
|
1499
|
+
|
|
1500
|
+
**Description:** Quickly create an email content by filling in pre-written content from a template.
|
|
1501
|
+
|
|
1502
|
+
**Connection Required:** No
|
|
1503
|
+
|
|
1504
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1505
|
+
|
|
1506
|
+
**Key Input Fields:**
|
|
1507
|
+
- `email_template` (string): The email template to use for generating the email content.
|
|
1508
|
+
- `email_content` (string): The email content to include in the template.
|
|
1509
|
+
- `hero_image` (string): The hero image to include in the email.
|
|
1510
|
+
- `cta` (string): The call to action link to include in the email.
|
|
1511
|
+
|
|
1512
|
+
---
|
|
1513
|
+
|
|
1514
|
+
### send_email
|
|
1515
|
+
|
|
1516
|
+
**Title:** Send Email
|
|
1517
|
+
|
|
1518
|
+
**Description:** Send an email to specified recipients.
|
|
1519
|
+
|
|
1520
|
+
**Connection Required:** No
|
|
1521
|
+
|
|
1522
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1523
|
+
|
|
1524
|
+
**Key Input Fields:**
|
|
1525
|
+
- `recipient_emails` (array): List email addresses of the recipients.
|
|
1526
|
+
- `cc_emails` (array): List email addresses of the CC recipients.
|
|
1527
|
+
- `bcc_emails` (array): List email addresses of the BCC recipients.
|
|
1528
|
+
- `subject` (string): Subject of the email.
|
|
1529
|
+
- `body` (any): Body of the email. This field is required if body_html is not provided.
|
|
1530
|
+
- ... and 1 more fields
|
|
1531
|
+
|
|
1532
|
+
---
|
|
1533
|
+
|
|
1534
|
+
## File Storage & Management
|
|
1535
|
+
|
|
1536
|
+
*File operations, storage, and management*
|
|
1537
|
+
|
|
1538
|
+
**Node Types:** 13
|
|
1539
|
+
|
|
1540
|
+
### drive_create_folder
|
|
1541
|
+
|
|
1542
|
+
**Title:** Create Folder
|
|
1543
|
+
|
|
1544
|
+
**Description:** Create a new folder in Drive
|
|
1545
|
+
|
|
1546
|
+
**Connection Required:** No
|
|
1547
|
+
|
|
1548
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1549
|
+
|
|
1550
|
+
**Key Input Fields:**
|
|
1551
|
+
- `name` (string): Name of the folder to create
|
|
1552
|
+
- `parent_id` (any): ID of the parent folder (leave empty for root)
|
|
1553
|
+
|
|
1554
|
+
---
|
|
1555
|
+
|
|
1556
|
+
### drive_create_upload_session
|
|
1557
|
+
|
|
1558
|
+
**Title:** Create Upload Session
|
|
1559
|
+
|
|
1560
|
+
**Description:** Create an upload session and get presigned URL for file upload
|
|
1561
|
+
|
|
1562
|
+
**Connection Required:** No
|
|
1563
|
+
|
|
1564
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1565
|
+
|
|
1566
|
+
**Key Input Fields:**
|
|
1567
|
+
- `name` (string): Name of the file to upload
|
|
1568
|
+
- `content_type` (string): MIME type of the file
|
|
1569
|
+
- `parent_id` (any): ID of the parent folder (None for root)
|
|
1570
|
+
- `size` (any): Expected file size in bytes
|
|
1571
|
+
- `sha256` (any): Expected SHA256 hash of the file
|
|
1572
|
+
- ... and 1 more fields
|
|
1573
|
+
|
|
1574
|
+
---
|
|
1575
|
+
|
|
1576
|
+
### drive_delete_item
|
|
1577
|
+
|
|
1578
|
+
**Title:** Delete Item
|
|
1579
|
+
|
|
1580
|
+
**Description:** Delete a Drive item (soft delete)
|
|
1581
|
+
|
|
1582
|
+
**Connection Required:** No
|
|
1583
|
+
|
|
1584
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1585
|
+
|
|
1586
|
+
**Key Input Fields:**
|
|
1587
|
+
- `item_id` (string): ID of the item to delete
|
|
1588
|
+
|
|
1589
|
+
---
|
|
1590
|
+
|
|
1591
|
+
### drive_get_download_url
|
|
1592
|
+
|
|
1593
|
+
**Title:** Get Download URL
|
|
1594
|
+
|
|
1595
|
+
**Description:** Get presigned download URL for a Drive item
|
|
1596
|
+
|
|
1597
|
+
**Connection Required:** No
|
|
1598
|
+
|
|
1599
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1600
|
+
|
|
1601
|
+
**Key Input Fields:**
|
|
1602
|
+
- `item_id` (string): ID of the item to get download URL for
|
|
1603
|
+
- `ttl` (integer): URL expiration time in seconds (default: 3600)
|
|
1604
|
+
|
|
1605
|
+
---
|
|
1606
|
+
|
|
1607
|
+
### drive_get_item
|
|
1608
|
+
|
|
1609
|
+
**Title:** Get Item
|
|
1610
|
+
|
|
1611
|
+
**Description:** Get a Drive item by ID
|
|
1612
|
+
|
|
1613
|
+
**Connection Required:** No
|
|
1614
|
+
|
|
1615
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1616
|
+
|
|
1617
|
+
**Key Input Fields:**
|
|
1618
|
+
- `item_id` (string): ID of the item to retrieve
|
|
1619
|
+
|
|
1620
|
+
---
|
|
1621
|
+
|
|
1622
|
+
### drive_get_uri_download_url
|
|
1623
|
+
|
|
1624
|
+
**Title:** Get URI Download URL
|
|
1625
|
+
|
|
1626
|
+
**Description:** Get presigned download URL for a Drive item by URI
|
|
1627
|
+
|
|
1628
|
+
**Connection Required:** No
|
|
1629
|
+
|
|
1630
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1631
|
+
|
|
1632
|
+
**Key Input Fields:**
|
|
1633
|
+
- `uri` (string): PMLFS URI to resolve (format: pmlfs://<project_id>/<path>)
|
|
1634
|
+
- `ttl` (integer): URL expiration time in seconds (default: 3600)
|
|
1635
|
+
|
|
1636
|
+
---
|
|
1637
|
+
|
|
1638
|
+
### drive_list_items
|
|
1639
|
+
|
|
1640
|
+
**Title:** List Items
|
|
1641
|
+
|
|
1642
|
+
**Description:** List items in a Drive folder
|
|
1643
|
+
|
|
1644
|
+
**Connection Required:** No
|
|
1645
|
+
|
|
1646
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1647
|
+
|
|
1648
|
+
**Key Input Fields:**
|
|
1649
|
+
- `parent_id` (any): ID of the parent folder (leave empty for root)
|
|
1650
|
+
- `limit` (integer): Maximum number of items to return
|
|
1651
|
+
- `offset` (integer): Number of items to skip
|
|
1652
|
+
|
|
1653
|
+
---
|
|
1654
|
+
|
|
1655
|
+
### drive_resolve_uri
|
|
1656
|
+
|
|
1657
|
+
**Title:** Resolve URI
|
|
1658
|
+
|
|
1659
|
+
**Description:** Resolve a pmlfs:// URI to a Drive item
|
|
1660
|
+
|
|
1661
|
+
**Connection Required:** No
|
|
1662
|
+
|
|
1663
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1664
|
+
|
|
1665
|
+
**Key Input Fields:**
|
|
1666
|
+
- `uri` (string): PMLFS URI to resolve (format: pmlfs://<project_id>/<path>)
|
|
1667
|
+
|
|
1668
|
+
---
|
|
1669
|
+
|
|
1670
|
+
### drive_update_item
|
|
1671
|
+
|
|
1672
|
+
**Title:** Update Item
|
|
1673
|
+
|
|
1674
|
+
**Description:** Update a Drive item (rename/move)
|
|
1675
|
+
|
|
1676
|
+
**Connection Required:** No
|
|
1677
|
+
|
|
1678
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1679
|
+
|
|
1680
|
+
**Key Input Fields:**
|
|
1681
|
+
- `item_id` (string): ID of the item to update
|
|
1682
|
+
- `name` (any): New name for the item (leave empty to keep current name)
|
|
1683
|
+
- `parent_id` (any): ID of the new parent folder (leave empty to keep current parent)
|
|
1684
|
+
- `if_match` (any): ETag for concurrency control (optional)
|
|
1685
|
+
|
|
1686
|
+
---
|
|
1687
|
+
|
|
1688
|
+
### export_data_to_file
|
|
1689
|
+
|
|
1690
|
+
**Title:** Export Data to File
|
|
1691
|
+
|
|
1692
|
+
**Description:** Export data to a file. The file will be stored in S3 and the URL will be returned.
|
|
1693
|
+
|
|
1694
|
+
**Connection Required:** No
|
|
1695
|
+
|
|
1696
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1697
|
+
|
|
1698
|
+
**Key Input Fields:**
|
|
1699
|
+
- `data` (string): Data to export
|
|
1700
|
+
- `file_extension` (string): File extension
|
|
1701
|
+
|
|
1702
|
+
---
|
|
1703
|
+
|
|
1704
|
+
### export_dataset
|
|
1705
|
+
|
|
1706
|
+
**Title:** Export Data Set
|
|
1707
|
+
|
|
1708
|
+
**Description:** Export a dataset to a file.
|
|
1709
|
+
|
|
1710
|
+
**Connection Required:** No
|
|
1711
|
+
|
|
1712
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1713
|
+
|
|
1714
|
+
**Key Input Fields:**
|
|
1715
|
+
- `dataset_id` (string): The ID of the dataset to export.
|
|
1716
|
+
- `workflow_run_status` (any): Filter documents by workflow run status.
|
|
1717
|
+
|
|
1718
|
+
---
|
|
1719
|
+
|
|
1720
|
+
### instagram_profile_analyzer
|
|
1721
|
+
|
|
1722
|
+
**Title:** Instagram profile analyzer
|
|
1723
|
+
|
|
1724
|
+
**Description:** Analyze an Instagram profile.
|
|
1725
|
+
|
|
1726
|
+
**Connection Required:** No
|
|
1727
|
+
|
|
1728
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1729
|
+
|
|
1730
|
+
**Key Input Fields:**
|
|
1731
|
+
- `instagram_profile` (string): The Instagram profile to analyze.
|
|
1732
|
+
- `profile_pic_url` (string): The URL of the profile picture.
|
|
1733
|
+
|
|
1734
|
+
---
|
|
1735
|
+
|
|
1736
|
+
### social_profile_analyzer
|
|
1737
|
+
|
|
1738
|
+
**Title:** Social profile analyzer
|
|
1739
|
+
|
|
1740
|
+
**Description:** Analyze a social media profile.
|
|
1741
|
+
|
|
1742
|
+
**Connection Required:** No
|
|
1743
|
+
|
|
1744
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1745
|
+
|
|
1746
|
+
**Key Input Fields:**
|
|
1747
|
+
- `social_data` (string): The social media data to analyze in JSON string format.
|
|
1748
|
+
- `profile_pic_url` (string): The URL of the profile picture.
|
|
1749
|
+
|
|
1750
|
+
---
|
|
1751
|
+
|
|
1752
|
+
## API & Integration
|
|
1753
|
+
|
|
1754
|
+
*Connect to external services and APIs*
|
|
1755
|
+
|
|
1756
|
+
**Node Types:** 3
|
|
1757
|
+
|
|
1758
|
+
### api_call
|
|
1759
|
+
|
|
1760
|
+
**Title:** API Call
|
|
1761
|
+
|
|
1762
|
+
**Description:** Call an API
|
|
1763
|
+
|
|
1764
|
+
**Connection Required:** No
|
|
1765
|
+
|
|
1766
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1767
|
+
|
|
1768
|
+
**Key Input Fields:**
|
|
1769
|
+
- `url` (string): The URL to call.
|
|
1770
|
+
- `method` (any): The method to call the API.
|
|
1771
|
+
- `headers` (any): The headers to send in the API call in JSON format.
|
|
1772
|
+
- `body` (any): The body to send in the API call.
|
|
1773
|
+
- `timeout` (integer): The timeout in seconds for the API call.
|
|
1774
|
+
- ... and 1 more fields
|
|
1775
|
+
|
|
1776
|
+
---
|
|
1777
|
+
|
|
1778
|
+
### mcp_run_action
|
|
1779
|
+
|
|
1780
|
+
**Title:** Run MCP Action
|
|
1781
|
+
|
|
1782
|
+
**Description:** Run any action on MCP.
|
|
1783
|
+
|
|
1784
|
+
**Connection Required:** MCP Connection (Required)
|
|
1785
|
+
|
|
1786
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1787
|
+
|
|
1788
|
+
**Key Input Fields:**
|
|
1789
|
+
- `action` (string): The action to run. This is the name of the action to run.
|
|
1790
|
+
- `input_params` (object): The input parameters for the model. These vary depending on the model you're usi
|
|
1791
|
+
|
|
1792
|
+
---
|
|
1793
|
+
|
|
1794
|
+
### telegram_call_bot_api
|
|
1795
|
+
|
|
1796
|
+
**Title:** Call Telegram Bot API
|
|
1797
|
+
|
|
1798
|
+
**Description:** Call the Telegram bot API.
|
|
1799
|
+
|
|
1800
|
+
**Connection Required:** Telegram Bot Connection (Required)
|
|
1801
|
+
|
|
1802
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1803
|
+
|
|
1804
|
+
**Key Input Fields:**
|
|
1805
|
+
- `endpoint` (string): The endpoint to call on the Telegram bot API. For example, 'sendMessage'.
|
|
1806
|
+
- `data` (object): The data to send to the Telegram bot API.
|
|
1807
|
+
|
|
1808
|
+
---
|
|
1809
|
+
|
|
1810
|
+
## Specialized & Advanced
|
|
1811
|
+
|
|
1812
|
+
*Specialized tools and advanced features*
|
|
1813
|
+
|
|
1814
|
+
**Node Types:** 43
|
|
1815
|
+
|
|
1816
|
+
### blend_v4
|
|
1817
|
+
|
|
1818
|
+
**Title:** Generate Blend V4
|
|
1819
|
+
|
|
1820
|
+
**Description:** Unleash Artistic QR Codes: Generate stunning AI-powered QR art with Quick Blend V4 (powered by https://quickqr.art)
|
|
1821
|
+
|
|
1822
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1823
|
+
|
|
1824
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1825
|
+
|
|
1826
|
+
**Key Input Fields:**
|
|
1827
|
+
- `prompt` (string): What you wish to see in the output image. A strong, descriptive prompt that clea
|
|
1828
|
+
- `negative_prompt` (string): A blurb of text describing what you do not wish to see in the output image
|
|
1829
|
+
- `background_url` (string): The URL of the background image.
|
|
1830
|
+
- `qr_code_url` (string): The URL of the QR code image.
|
|
1831
|
+
- `qr_strength` (number): The strength of the QR code. Higher values will make the QR code more prominent
|
|
1832
|
+
- ... and 5 more fields
|
|
1833
|
+
|
|
1834
|
+
---
|
|
1835
|
+
|
|
1836
|
+
### call_other_workflow
|
|
1837
|
+
|
|
1838
|
+
**Title:** Call Other Workflow
|
|
1839
|
+
|
|
1840
|
+
**Description:** Call another workflow.
|
|
1841
|
+
|
|
1842
|
+
**Connection Required:** No
|
|
1843
|
+
|
|
1844
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1845
|
+
|
|
1846
|
+
**Key Input Fields:**
|
|
1847
|
+
- `workflow_id` (string): The ID of the workflow to call. (Destination workflow must have public access)
|
|
1848
|
+
- `workflow_input` (string): The input to the workflow in JSON format.
|
|
1849
|
+
|
|
1850
|
+
---
|
|
1851
|
+
|
|
1852
|
+
### comfy_ui
|
|
1853
|
+
|
|
1854
|
+
**Title:** Comfy UI
|
|
1855
|
+
|
|
1856
|
+
**Description:** Run any ComfyUI workflow.
|
|
1857
|
+
|
|
1858
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1859
|
+
|
|
1860
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1861
|
+
|
|
1862
|
+
**Key Input Fields:**
|
|
1863
|
+
- `workflow_json` (string): Your ComfyUI workflow as JSON. You must use the API version of your workflow. Ge
|
|
1864
|
+
|
|
1865
|
+
---
|
|
1866
|
+
|
|
1867
|
+
### create_cx_agent
|
|
1868
|
+
|
|
1869
|
+
**Title:** Create CX Agent
|
|
1870
|
+
|
|
1871
|
+
**Description:** Create a CX agent.
|
|
1872
|
+
|
|
1873
|
+
**Connection Required:** No
|
|
1874
|
+
|
|
1875
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1876
|
+
|
|
1877
|
+
**Key Input Fields:**
|
|
1878
|
+
- `access_token` (string): The access token to use to create the agent.
|
|
1879
|
+
- `workspace_id` (string): The ID of the workspace to create the agent in.
|
|
1880
|
+
- `agent_name` (string): The name of the agent to create.
|
|
1881
|
+
- `data` (object): The data to create the agent with.
|
|
1882
|
+
- `email` (string): The email address to send notifications when the agent is created.
|
|
1883
|
+
|
|
1884
|
+
---
|
|
1885
|
+
|
|
1886
|
+
### create_pinpoint_campaign
|
|
1887
|
+
|
|
1888
|
+
**Title:** Create PinPoint Campaign
|
|
1889
|
+
|
|
1890
|
+
**Description:** Create a campaign in PinPoint.
|
|
1891
|
+
|
|
1892
|
+
**Connection Required:** No
|
|
1893
|
+
|
|
1894
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1895
|
+
|
|
1896
|
+
**Key Input Fields:**
|
|
1897
|
+
- `application_id` (string): The ID of the application to import the segment to.
|
|
1898
|
+
- `name` (string): Campaign Name.
|
|
1899
|
+
- `description` (any): Campaign Description.
|
|
1900
|
+
- `segment_id` (string): Segment ID.
|
|
1901
|
+
- `email_body` (any): Email Body.
|
|
1902
|
+
- ... and 3 more fields
|
|
1903
|
+
|
|
1904
|
+
---
|
|
1905
|
+
|
|
1906
|
+
### customer_segment
|
|
1907
|
+
|
|
1908
|
+
**Title:** Customer Segment
|
|
1909
|
+
|
|
1910
|
+
**Description:** Generate customer segment from Amazon Personalize.
|
|
1911
|
+
|
|
1912
|
+
**Connection Required:** No
|
|
1913
|
+
|
|
1914
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1915
|
+
|
|
1916
|
+
**Key Input Fields:**
|
|
1917
|
+
- `prompt` (string): The prompt to use for the question answering.
|
|
1918
|
+
- `car_model` (string): The car model to use for the question answering.
|
|
1919
|
+
|
|
1920
|
+
---
|
|
1921
|
+
|
|
1922
|
+
### echo
|
|
1923
|
+
|
|
1924
|
+
**Title:** Echo
|
|
1925
|
+
|
|
1926
|
+
**Description:** Get back whatever your input is
|
|
1927
|
+
|
|
1928
|
+
**Connection Required:** No
|
|
1929
|
+
|
|
1930
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1931
|
+
|
|
1932
|
+
**Key Input Fields:**
|
|
1933
|
+
- `data` (string): The data to echo
|
|
1934
|
+
|
|
1935
|
+
---
|
|
1936
|
+
|
|
1937
|
+
### enhance
|
|
1938
|
+
|
|
1939
|
+
**Title:** Enhance Image
|
|
1940
|
+
|
|
1941
|
+
**Description:** Enhance image node.
|
|
1942
|
+
|
|
1943
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1944
|
+
|
|
1945
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1946
|
+
|
|
1947
|
+
**Key Input Fields:**
|
|
1948
|
+
- `image_url` (string): Image url
|
|
1949
|
+
|
|
1950
|
+
---
|
|
1951
|
+
|
|
1952
|
+
### face_detailer
|
|
1953
|
+
|
|
1954
|
+
**Title:** Face Detailer
|
|
1955
|
+
|
|
1956
|
+
**Description:** Face Detailer node.
|
|
1957
|
+
|
|
1958
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1959
|
+
|
|
1960
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1961
|
+
|
|
1962
|
+
**Key Input Fields:**
|
|
1963
|
+
- `image_url` (string): Image url
|
|
1964
|
+
|
|
1965
|
+
---
|
|
1966
|
+
|
|
1967
|
+
### face_swap
|
|
1968
|
+
|
|
1969
|
+
**Title:** Face Swap
|
|
1970
|
+
|
|
1971
|
+
**Description:** Face Swap node.
|
|
1972
|
+
|
|
1973
|
+
**Connection Required:** PixelML Connection (Required)
|
|
1974
|
+
|
|
1975
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1976
|
+
|
|
1977
|
+
**Key Input Fields:**
|
|
1978
|
+
- `source_image_url` (string): Source image url
|
|
1979
|
+
- `input_image_url` (string): Input image url
|
|
1980
|
+
- `frame_image_url` (string): Frme image url
|
|
1981
|
+
- `frame_width` (integer): The width of the frame image.
|
|
1982
|
+
- `frame_height` (integer): The height of the frame image.
|
|
1983
|
+
- ... and 4 more fields
|
|
1984
|
+
|
|
1985
|
+
---
|
|
1986
|
+
|
|
1987
|
+
### fal_run_model
|
|
1988
|
+
|
|
1989
|
+
**Title:** Run FAL Model
|
|
1990
|
+
|
|
1991
|
+
**Description:** Run any model on FAL.ai with your API key.
|
|
1992
|
+
|
|
1993
|
+
**Connection Required:** FAL Connection (Required)
|
|
1994
|
+
|
|
1995
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
1996
|
+
|
|
1997
|
+
**Key Input Fields:**
|
|
1998
|
+
- `model` (string): The FAL model to run (format: 'owner/model_name'). Example: 'fal-ai/fast-sdxl'
|
|
1999
|
+
- `input_params` (object): The input parameters for the model. These vary depending on the model you're usi
|
|
2000
|
+
- `image_input` (any): Optional image input for models that require an image. This will be added to the
|
|
2001
|
+
- `use_streaming` (boolean): Whether to use streaming for models that support it. This allows receiving parti
|
|
2002
|
+
|
|
2003
|
+
---
|
|
2004
|
+
|
|
2005
|
+
### get_value_by_key
|
|
2006
|
+
|
|
2007
|
+
**Title:** Get Value by Key
|
|
2008
|
+
|
|
2009
|
+
**Description:** Get a value from a data object by key.
|
|
2010
|
+
|
|
2011
|
+
**Connection Required:** No
|
|
2012
|
+
|
|
2013
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2014
|
+
|
|
2015
|
+
**Key Input Fields:**
|
|
2016
|
+
- `data` (string): The data object to get the value from.
|
|
2017
|
+
- `key_to_match` (string): The key field to search for in the data objects.
|
|
2018
|
+
- `value_to_match` (string): The value to match in the specified key field.
|
|
2019
|
+
|
|
2020
|
+
---
|
|
2021
|
+
|
|
2022
|
+
### hair_style
|
|
2023
|
+
|
|
2024
|
+
**Title:** Hair Style
|
|
2025
|
+
|
|
2026
|
+
**Description:** Apply a new hair style to an image.
|
|
2027
|
+
|
|
2028
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2029
|
+
|
|
2030
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2031
|
+
|
|
2032
|
+
**Key Input Fields:**
|
|
2033
|
+
- `prompt` (string): Prompt
|
|
2034
|
+
- `image_url` (string): Image url
|
|
2035
|
+
|
|
2036
|
+
---
|
|
2037
|
+
|
|
2038
|
+
### imagine_v4
|
|
2039
|
+
|
|
2040
|
+
**Title:** Imagine V4
|
|
2041
|
+
|
|
2042
|
+
**Description:** Imagine V4
|
|
2043
|
+
|
|
2044
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2045
|
+
|
|
2046
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2047
|
+
|
|
2048
|
+
**Key Input Fields:**
|
|
2049
|
+
- `prompt` (string): Input your prompt
|
|
2050
|
+
|
|
2051
|
+
---
|
|
2052
|
+
|
|
2053
|
+
### import_dataset
|
|
2054
|
+
|
|
2055
|
+
**Title:** Import Data into Dataset
|
|
2056
|
+
|
|
2057
|
+
**Description:** Import a file into a dataset.
|
|
2058
|
+
|
|
2059
|
+
**Connection Required:** No
|
|
2060
|
+
|
|
2061
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2062
|
+
|
|
2063
|
+
**Key Input Fields:**
|
|
2064
|
+
- `file_url` (string): The URL of the file to import. Supports CSV, XLSX, and JSON lines.
|
|
2065
|
+
- `dataset_id` (string): The ID of the dataset to import into, if applicable.
|
|
2066
|
+
|
|
2067
|
+
---
|
|
2068
|
+
|
|
2069
|
+
### import_pinpoint_segment
|
|
2070
|
+
|
|
2071
|
+
**Title:** Import PinPoint Segment
|
|
2072
|
+
|
|
2073
|
+
**Description:** Import PinPoint segment.
|
|
2074
|
+
|
|
2075
|
+
**Connection Required:** No
|
|
2076
|
+
|
|
2077
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2078
|
+
|
|
2079
|
+
**Key Input Fields:**
|
|
2080
|
+
- `application_id` (string): The ID of the application to import the segment to.
|
|
2081
|
+
- `segment_name` (string): Segment name.
|
|
2082
|
+
- `format` (string): The format of the files that contain the endpoint definitions to import.
|
|
2083
|
+
- `data` (string): The data to import.
|
|
2084
|
+
|
|
2085
|
+
---
|
|
2086
|
+
|
|
2087
|
+
### inpainting
|
|
2088
|
+
|
|
2089
|
+
**Title:** Inpainting
|
|
2090
|
+
|
|
2091
|
+
**Description:** Inpainting node for image editing.
|
|
2092
|
+
|
|
2093
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2094
|
+
|
|
2095
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2096
|
+
|
|
2097
|
+
**Key Input Fields:**
|
|
2098
|
+
- `prompt` (string): Prompt
|
|
2099
|
+
- `image_url` (string): Image url
|
|
2100
|
+
- `mask_url` (string): Mask url
|
|
2101
|
+
|
|
2102
|
+
---
|
|
2103
|
+
|
|
2104
|
+
### instagram_scrapper
|
|
2105
|
+
|
|
2106
|
+
**Title:** Instagram scrapper
|
|
2107
|
+
|
|
2108
|
+
**Description:** Scrape an Instagram user.
|
|
2109
|
+
|
|
2110
|
+
**Connection Required:** No
|
|
2111
|
+
|
|
2112
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2113
|
+
|
|
2114
|
+
**Key Input Fields:**
|
|
2115
|
+
- `user_name` (string): The username of the Instagram user.
|
|
2116
|
+
|
|
2117
|
+
---
|
|
2118
|
+
|
|
2119
|
+
### instant_background
|
|
2120
|
+
|
|
2121
|
+
**Title:** Instant Background
|
|
2122
|
+
|
|
2123
|
+
**Description:** Instantly create stunning AI-generated scene backgrounds for your product images with one click, offering commercial-grade quality and a diverse style selection for every need.
|
|
2124
|
+
|
|
2125
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2126
|
+
|
|
2127
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2128
|
+
|
|
2129
|
+
**Key Input Fields:**
|
|
2130
|
+
- `image_url` (string): Image url
|
|
2131
|
+
- `object` (string): Object (What should stay in the image?)
|
|
2132
|
+
- `background_prompt` (string): Describe the new background you want to add to the image.
|
|
2133
|
+
- `padding_top` (any): Padding top
|
|
2134
|
+
- `padding_bottom` (any): Padding bottom
|
|
2135
|
+
- ... and 2 more fields
|
|
2136
|
+
|
|
2137
|
+
---
|
|
2138
|
+
|
|
2139
|
+
### instant_background_v2
|
|
2140
|
+
|
|
2141
|
+
**Title:** Instant Background V2
|
|
2142
|
+
|
|
2143
|
+
**Description:** Instantly create stunning AI-generated scene backgrounds for your product images with one click, offering commercial-grade quality and a diverse style selection for every need
|
|
2144
|
+
|
|
2145
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2146
|
+
|
|
2147
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2148
|
+
|
|
2149
|
+
**Key Input Fields:**
|
|
2150
|
+
- `image_url` (string): Image url
|
|
2151
|
+
- `prompt` (string): Describe the new background you want to add to the image.
|
|
2152
|
+
- `negative_prompt` (any): Negative prompt
|
|
2153
|
+
- `padding_top` (any): Padding top
|
|
2154
|
+
- `padding_bottom` (any): Padding bottom
|
|
2155
|
+
- ... and 2 more fields
|
|
2156
|
+
|
|
2157
|
+
---
|
|
2158
|
+
|
|
2159
|
+
### knowledge_retrieval
|
|
2160
|
+
|
|
2161
|
+
**Title:** Knowledge Retrieval
|
|
2162
|
+
|
|
2163
|
+
**Description:** Retrieve knowledge from a dataset.
|
|
2164
|
+
|
|
2165
|
+
**Connection Required:** No
|
|
2166
|
+
|
|
2167
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2168
|
+
|
|
2169
|
+
**Key Input Fields:**
|
|
2170
|
+
- `dataset` (string): The dataset to retrieve knowledge from.
|
|
2171
|
+
- `query` (string): The query to retrieve knowledge from the dataset.
|
|
2172
|
+
- `top_k` (integer): The number of documents to return.
|
|
2173
|
+
|
|
2174
|
+
---
|
|
2175
|
+
|
|
2176
|
+
### lipsync
|
|
2177
|
+
|
|
2178
|
+
**Title:** Lipsync
|
|
2179
|
+
|
|
2180
|
+
**Description:** Lipsync
|
|
2181
|
+
|
|
2182
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2183
|
+
|
|
2184
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
2185
|
+
|
|
2186
|
+
**Key Input Fields:**
|
|
2187
|
+
- `input_video_url` (string): Input video URL
|
|
2188
|
+
- `audio_url` (string): Audio URL
|
|
2189
|
+
- `file_name` (any): File name
|
|
2190
|
+
|
|
2191
|
+
---
|
|
2192
|
+
|
|
2193
|
+
### llama3
|
|
2194
|
+
|
|
2195
|
+
**Title:** LLama 3
|
|
2196
|
+
|
|
2197
|
+
**Description:** LLama 3 node
|
|
2198
|
+
|
|
2199
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2200
|
+
|
|
2201
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2202
|
+
|
|
2203
|
+
**Key Input Fields:**
|
|
2204
|
+
- `background` (string): The background prompt sent to the LLama 3 model
|
|
2205
|
+
- `prompt` (string): The prompt sent to the LLama 3 model
|
|
2206
|
+
|
|
2207
|
+
---
|
|
2208
|
+
|
|
2209
|
+
### magic_upscale
|
|
2210
|
+
|
|
2211
|
+
**Title:** Magic Upscale
|
|
2212
|
+
|
|
2213
|
+
**Description:** Upscale and enhance image quality using AI.
|
|
2214
|
+
|
|
2215
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2216
|
+
|
|
2217
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2218
|
+
|
|
2219
|
+
**Key Input Fields:**
|
|
2220
|
+
- `image_url` (string): Image url
|
|
2221
|
+
|
|
2222
|
+
---
|
|
2223
|
+
|
|
2224
|
+
### mma_art_moments
|
|
2225
|
+
|
|
2226
|
+
**Title:** MMA Art Moments
|
|
2227
|
+
|
|
2228
|
+
**Description:** MMA Art Moments node
|
|
2229
|
+
|
|
2230
|
+
**Connection Required:** No
|
|
2231
|
+
|
|
2232
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2233
|
+
|
|
2234
|
+
**Key Input Fields:**
|
|
2235
|
+
- `code` (string): Code
|
|
2236
|
+
- `name` (string): Name
|
|
2237
|
+
- `email` (string): Email
|
|
2238
|
+
- `company_name` (string): Company Name
|
|
2239
|
+
- `job_title` (string): Job Title
|
|
2240
|
+
|
|
2241
|
+
---
|
|
2242
|
+
|
|
2243
|
+
### mma_brand_confirm
|
|
2244
|
+
|
|
2245
|
+
**Title:** MMA Brand Confirm
|
|
2246
|
+
|
|
2247
|
+
**Description:** MMA Brand Confirm node
|
|
2248
|
+
|
|
2249
|
+
**Connection Required:** No
|
|
2250
|
+
|
|
2251
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2252
|
+
|
|
2253
|
+
**Key Input Fields:**
|
|
2254
|
+
- `brand` (string): Brand Name
|
|
2255
|
+
- `morning_session` (array): List of morning session topics
|
|
2256
|
+
- `afternoon_session` (array): List of afternoon session topics
|
|
2257
|
+
|
|
2258
|
+
---
|
|
2259
|
+
|
|
2260
|
+
### mma_flashbiz_connect
|
|
2261
|
+
|
|
2262
|
+
**Title:** MMA FlashBiz Connect
|
|
2263
|
+
|
|
2264
|
+
**Description:** MMA FlashBiz Connect node
|
|
2265
|
+
|
|
2266
|
+
**Connection Required:** No
|
|
2267
|
+
|
|
2268
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2269
|
+
|
|
2270
|
+
**Key Input Fields:**
|
|
2271
|
+
- `name` (string): Name
|
|
2272
|
+
- `company_name` (string): Company Name
|
|
2273
|
+
- `email` (string): Email
|
|
2274
|
+
- `phone_number` (string): Phone Number
|
|
2275
|
+
- `company_pitch_deck` (string): Company Pitch Deck
|
|
2276
|
+
- ... and 2 more fields
|
|
2277
|
+
|
|
2278
|
+
---
|
|
2279
|
+
|
|
2280
|
+
### outpainting
|
|
2281
|
+
|
|
2282
|
+
**Title:** Outpainting
|
|
2283
|
+
|
|
2284
|
+
**Description:** Expand an image beyond its original boundaries using AI-generated content.
|
|
2285
|
+
|
|
2286
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2287
|
+
|
|
2288
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2289
|
+
|
|
2290
|
+
**Key Input Fields:**
|
|
2291
|
+
- `image_url` (string): Image url
|
|
2292
|
+
- `direction` (any): Direction to expand
|
|
2293
|
+
|
|
2294
|
+
---
|
|
2295
|
+
|
|
2296
|
+
### pixelml_bytedance
|
|
2297
|
+
|
|
2298
|
+
**Title:** ByteDance (Generate Video)
|
|
2299
|
+
|
|
2300
|
+
**Description:** Generate video using ByteDance's video generation models.
|
|
2301
|
+
|
|
2302
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2303
|
+
|
|
2304
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2305
|
+
|
|
2306
|
+
**Key Input Fields:**
|
|
2307
|
+
- `model` (any): The ByteDance model to use for video generation.
|
|
2308
|
+
- `prompt` (string): The prompt describing the video to generate.
|
|
2309
|
+
- `start_frame` (any): Optional URL to an image to use as the starting frame for video generation. If p
|
|
2310
|
+
- `end_frame` (any): Optional URL to an image to use as the ending frame for video generation. If pro
|
|
2311
|
+
- `aspect_ratio` (any): The aspect ratio for the generated video.
|
|
2312
|
+
- ... and 1 more fields
|
|
2313
|
+
|
|
2314
|
+
---
|
|
2315
|
+
|
|
2316
|
+
### pixelml_sora
|
|
2317
|
+
|
|
2318
|
+
**Title:** Sora (Generate Video)
|
|
2319
|
+
|
|
2320
|
+
**Description:** Generate video using OpenAI's Sora video generation models.
|
|
2321
|
+
|
|
2322
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2323
|
+
|
|
2324
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2325
|
+
|
|
2326
|
+
**Key Input Fields:**
|
|
2327
|
+
- `model` (any): The Sora model to use for video generation.
|
|
2328
|
+
- `prompt` (string): The prompt describing the video to generate.
|
|
2329
|
+
- `image` (any): Optional URL to an image to use as the starting frame for video generation. If p
|
|
2330
|
+
- `aspect_ratio` (any): The aspect ratio for the generated video.
|
|
2331
|
+
- `duration` (integer): The duration of the generated video.
|
|
2332
|
+
|
|
2333
|
+
---
|
|
2334
|
+
|
|
2335
|
+
### qr_art_v5s_plus
|
|
2336
|
+
|
|
2337
|
+
**Title:** QR Art V5S Plus
|
|
2338
|
+
|
|
2339
|
+
**Description:** Generate artistic QR codes with advanced customization options.
|
|
2340
|
+
|
|
2341
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2342
|
+
|
|
2343
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2344
|
+
|
|
2345
|
+
**Key Input Fields:**
|
|
2346
|
+
- `prompt` (string): Input your prompt
|
|
2347
|
+
- `qr_content` (string): Input your QR content (URL, text, etc.)
|
|
2348
|
+
- `qr_strength` (number): QR strength
|
|
2349
|
+
- `seed` (integer): Seed
|
|
2350
|
+
- `resolution` (string): Select the resolution of the image.
|
|
2351
|
+
- ... and 2 more fields
|
|
2352
|
+
|
|
2353
|
+
---
|
|
2354
|
+
|
|
2355
|
+
### qr_art_v6
|
|
2356
|
+
|
|
2357
|
+
**Title:** Generate QR Art V6
|
|
2358
|
+
|
|
2359
|
+
**Description:** Unleash Artistic QR Codes: Generate stunning AI-powered QR art with Quick QR Art V6 (powered by https://quickqr.art)
|
|
2360
|
+
|
|
2361
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2362
|
+
|
|
2363
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2364
|
+
|
|
2365
|
+
**Key Input Fields:**
|
|
2366
|
+
- `prompt` (string): What you wish to see in the output image. A strong, descriptive prompt that clea
|
|
2367
|
+
- `negative_prompt` (string): A blurb of text describing what you do not wish to see in the output image
|
|
2368
|
+
- `qr_content` (string): The content you wish to encode in the QR code.
|
|
2369
|
+
- `qr_strength` (number): The strength of the QR code. Higher values will make the QR code more prominent
|
|
2370
|
+
- `resolution` (string): Select the resolution of the image.
|
|
2371
|
+
- ... and 3 more fields
|
|
2372
|
+
|
|
2373
|
+
---
|
|
2374
|
+
|
|
2375
|
+
### remove_background
|
|
2376
|
+
|
|
2377
|
+
**Title:** Remove Background
|
|
2378
|
+
|
|
2379
|
+
**Description:** Remove the background from an image, leaving only the main subject.
|
|
2380
|
+
|
|
2381
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2382
|
+
|
|
2383
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2384
|
+
|
|
2385
|
+
**Key Input Fields:**
|
|
2386
|
+
- `image_url` (string): Image url
|
|
2387
|
+
|
|
2388
|
+
---
|
|
2389
|
+
|
|
2390
|
+
### replicate_run_model
|
|
2391
|
+
|
|
2392
|
+
**Title:** Run Replicate Model
|
|
2393
|
+
|
|
2394
|
+
**Description:** Run any model on Replicate.com with your API token.
|
|
2395
|
+
|
|
2396
|
+
**Connection Required:** Replicate Connection (Required)
|
|
2397
|
+
|
|
2398
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2399
|
+
|
|
2400
|
+
**Key Input Fields:**
|
|
2401
|
+
- `model` (string): The Replicate model to run (format: 'username/model_name:version' or 'username/m
|
|
2402
|
+
- `input_params` (object): The input parameters for the model. These vary depending on the model you're usi
|
|
2403
|
+
- `image_input` (any): Optional image input for models that require an image. This will be added to the
|
|
2404
|
+
- `webhook_url` (any): Optional webhook URL to receive updates when the prediction is complete.
|
|
2405
|
+
|
|
2406
|
+
---
|
|
2407
|
+
|
|
2408
|
+
### run_javascript
|
|
2409
|
+
|
|
2410
|
+
**Title:** Run JavaScript
|
|
2411
|
+
|
|
2412
|
+
**Description:** Run JavaScript code.
|
|
2413
|
+
|
|
2414
|
+
**Connection Required:** No
|
|
2415
|
+
|
|
2416
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2417
|
+
|
|
2418
|
+
**Key Input Fields:**
|
|
2419
|
+
- `code` (string): The Javascript code to execute, returning the value to use in the next node.
|
|
2420
|
+
|
|
2421
|
+
- `input` (object): Input to the JavaScript code. Input will be available in the `args.input` object
|
|
2422
|
+
|
|
2423
|
+
---
|
|
2424
|
+
|
|
2425
|
+
### segment_user
|
|
2426
|
+
|
|
2427
|
+
**Title:** Segment User
|
|
2428
|
+
|
|
2429
|
+
**Description:** Segment user.
|
|
2430
|
+
|
|
2431
|
+
**Connection Required:** No
|
|
2432
|
+
|
|
2433
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2434
|
+
|
|
2435
|
+
**Key Input Fields:**
|
|
2436
|
+
- `users` (string): List of users in JSON format.
|
|
2437
|
+
|
|
2438
|
+
---
|
|
2439
|
+
|
|
2440
|
+
### segment_user_v2
|
|
2441
|
+
|
|
2442
|
+
**Title:** Segment User V2
|
|
2443
|
+
|
|
2444
|
+
**Description:** Segment user V2
|
|
2445
|
+
|
|
2446
|
+
**Connection Required:** No
|
|
2447
|
+
|
|
2448
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2449
|
+
|
|
2450
|
+
**Key Input Fields:**
|
|
2451
|
+
- `users` (string): List of users in JSON format.
|
|
2452
|
+
|
|
2453
|
+
---
|
|
2454
|
+
|
|
2455
|
+
### straico_prompt_completion
|
|
2456
|
+
|
|
2457
|
+
**Title:** Run Straico Prompt Completion V1
|
|
2458
|
+
|
|
2459
|
+
**Description:** Run a prompt completion using the Straico API.
|
|
2460
|
+
|
|
2461
|
+
**Connection Required:** Straico Connection (Required)
|
|
2462
|
+
|
|
2463
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2464
|
+
|
|
2465
|
+
**Key Input Fields:**
|
|
2466
|
+
- `models` (array): An array of 1-4 unique model identifiers
|
|
2467
|
+
- `message` (string): The prompt text for which completions are requested
|
|
2468
|
+
- `file_urls` (any): An array of up to 4 file URLs, previously uploaded via the File Upload endpoint
|
|
2469
|
+
- `images` (array): An array of image URLs.
|
|
2470
|
+
- `youtube_urls` (any): An array of up to 4 YouTube video URLs
|
|
2471
|
+
- ... and 3 more fields
|
|
2472
|
+
|
|
2473
|
+
---
|
|
2474
|
+
|
|
2475
|
+
### submit_artifact
|
|
2476
|
+
|
|
2477
|
+
**Title:** Submit Artifact
|
|
2478
|
+
|
|
2479
|
+
**Description:** Submit artifact to the platform GPTsDex
|
|
2480
|
+
|
|
2481
|
+
**Connection Required:** No
|
|
2482
|
+
|
|
2483
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2484
|
+
|
|
2485
|
+
**Key Input Fields:**
|
|
2486
|
+
- `accessToken` (string): Access Token
|
|
2487
|
+
- `title` (string): Title
|
|
2488
|
+
- `url` (string): URL
|
|
2489
|
+
- `description` (string): Description
|
|
2490
|
+
- `thumbnail` (string): Thumbnail
|
|
2491
|
+
- ... and 3 more fields
|
|
2492
|
+
|
|
2493
|
+
---
|
|
2494
|
+
|
|
2495
|
+
### telegram_send_message
|
|
2496
|
+
|
|
2497
|
+
**Title:** Send Telegram Message
|
|
2498
|
+
|
|
2499
|
+
**Description:** Send a message to a Telegram chat.
|
|
2500
|
+
|
|
2501
|
+
**Connection Required:** Telegram Bot Connection (Required)
|
|
2502
|
+
|
|
2503
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2504
|
+
|
|
2505
|
+
**Key Input Fields:**
|
|
2506
|
+
- `chat_id` (string): Unique identifier for the target chat or username of the target channel (in the
|
|
2507
|
+
- `text` (string): Text of the message to be sent, 1-4096 characters after entities parsing
|
|
2508
|
+
- `business_connection_id` (any): Unique identifier of the business connection on behalf of which the message will
|
|
2509
|
+
- `message_thread_id` (any): Unique identifier for the target message thread (topic) of the forum; for forum
|
|
2510
|
+
- `parse_mode` (any): Mode for parsing entities in the message text. Can be 'Markdown', 'MarkdownV2',
|
|
2511
|
+
- ... and 8 more fields
|
|
2512
|
+
|
|
2513
|
+
---
|
|
2514
|
+
|
|
2515
|
+
### tiktok_user_posts_scrapper
|
|
2516
|
+
|
|
2517
|
+
**Title:** TikTok user posts scrapper
|
|
2518
|
+
|
|
2519
|
+
**Description:** Scrape TikTok posts for a user.
|
|
2520
|
+
|
|
2521
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2522
|
+
|
|
2523
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2524
|
+
|
|
2525
|
+
**Key Input Fields:**
|
|
2526
|
+
- `user_name` (string): The username of the TikTok user.
|
|
2527
|
+
- `max_items` (integer): The maximum number of posts to scrape (1-100).
|
|
2528
|
+
|
|
2529
|
+
---
|
|
2530
|
+
|
|
2531
|
+
### tiktok_user_scrapper
|
|
2532
|
+
|
|
2533
|
+
**Title:** TikTok profile scrapper
|
|
2534
|
+
|
|
2535
|
+
**Description:** Scrape a TikTok user's profile.
|
|
2536
|
+
|
|
2537
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2538
|
+
|
|
2539
|
+
**Cost:** 4 credits (PML: $0.01)
|
|
2540
|
+
|
|
2541
|
+
**Key Input Fields:**
|
|
2542
|
+
- `username` (string): The username of the TikTok user.
|
|
2543
|
+
|
|
2544
|
+
---
|
|
2545
|
+
|
|
2546
|
+
### url_context
|
|
2547
|
+
|
|
2548
|
+
**Title:** Google URL Context
|
|
2549
|
+
|
|
2550
|
+
**Description:** The URL context tool lets you provide additional context to the models in the form of URLs. By including URLs in your request, the model will access the content from those pages to inform and enhance its response.
|
|
2551
|
+
|
|
2552
|
+
**Connection Required:** PixelML Connection (Required)
|
|
2553
|
+
|
|
2554
|
+
**Cost:** 4 credits (PML: $0.1)
|
|
2555
|
+
|
|
2556
|
+
**Key Input Fields:**
|
|
2557
|
+
- `model` (any): The model to use for the URL context. Default is Gemini 2.5 Flash
|
|
2558
|
+
- `prompt` (string): The prompt to use for the URL context. Include your question and the URL you wan
|
|
2559
|
+
- `include_google_search` (boolean): When Grounding with Google Search are enabled, the model can use its search capa
|
|
2560
|
+
|
|
2561
|
+
---
|
|
2562
|
+
|