What are input types?
The input type determines the UI and the data type of the input
Input types both have certain requirements and a specific data type they will return:
Input | Input Requirements | Resulting Data Type | Use Cases |
---|---|---|---|
Short Text | String | ||
Long Text | String | ||
Single-Select | String | Allow the user to select one option | |
Multi-Select | String | Allow the user to select multiple options | |
JSON | JSON or List | JSON or List | Create an API that accepts a JSON payload |
File Text | .pdf, .txt | String | Generate summaries or insights from PDFs |
File Media | .mp3, .mp4, .wav, .jpg, .png, .webp | Downloadable link to file | Transcribe and analyze interviews, analyze images. |
File CSV | .csv | A list of JSON objects | Iterate over each row of a csv and analyze the results |
Database | Database | Run a query on your database | |
Number | Number |
Please note: files do not have a specific size limit, but large files could impact upload time and server load.
Updated 26 days ago