Inputs

☐ Prompt / Description (Required)

A clear and concise instruction describing what this step should do. This helps the AI debug and adjust download handling if needed.

Good Example: "Wait for a file to download and store the file path in a table."

Bad Example: "Download something and keep track of it."

Why it’s bad? Too vague, lacks specificity about handling the download.

☐ Download Timeout (Required)

Maximum wait time for download completion:

  • Specified in milliseconds
  • Example: 20000 (20 seconds)
  • Adjust based on file size and connection speed

☐ Storage Options (Required)

Assign to Variable

Save file path to a variable:

  • Variable name required
  • For later reference
  • Dynamic usage

Insert to Table

Store file path in a table:

  • Column selection required
  • Structured storage
  • Download tracking

Usage Example

Scenario: Managing file downloads

✅ Good Prompt:

“Wait for the file to download and store its file path in the ‘Downloaded Files’ column.”

✅ Download Configuration:

Timeout: 20000 milliseconds Storage: Insert to Table Column: Downloaded Files

Alternative Example:

Timeout: 30000 milliseconds Storage: Assign to Variable Variable: downloaded_file_path

Notes

  • The Prompt / Description is required to help AI debug and adjust download handling if needed.
  • At least one storage option must be selected (variable or table).
  • Set appropriate timeout values based on expected download sizes.
  • Consider network conditions when configuring timeouts.