It selects content from a neutral table format and generates text based on a prompt. For each row in the table, it uses the prompt to create text and stores the result in the corresponding cell.
Properties
| From | Name of the Input Data Source. The input source must contain the neutral table format. |
| To | Name of the Output Data Source. The output-source will always be a neutral table format with an extra column for the generated text. |
| Script | The Prompt for the GPT. Use {ColumnName} to reference a column in the table |
Parameters
| @ResultColumn | Specifies the target column where the result will be written. If the column already exists in the input data table, its values will be overwritten. |
| @MaxRowLimit (optional) | Defines the maximum number of rows GPT can process to prevent excessive or unintended calls. The default is 100. |
| @Temperature (optional) | Sets the sampling temperature for the GPT call, controlling output randomness. Higher values (e.g., 1.0) generate more diverse results, while lower values (e.g., 0.2) produce more deterministic output. If not set, the model’s default temperature is used. |
| @MaxTokens (optional) | Sets the maximum number of tokens the GPT model can generate in a response, limiting the output length. If not specified, the model’s default value is used. |
| @Model (optional) | Specifies which model to use. The default is gpt-4-turbo. |
| @ApiKey (optional) | Set the API key. If not specified, the key from the AI settings will be used by default. |
Comments
0 comments
Please sign in to leave a comment.