Learn R Programming

chatAI4R (version 0.3.6)

createEBAYdes: Create eBay Product Description

Description

This function generates a product description for eBay listings in English. It uses the GPT-4 model for text generation and can take input from either RStudio or the clipboard.

Usage

createEBAYdes(
  Model = "gpt-4o-mini",
  SelectedCode = TRUE,
  verbose = TRUE,
  SlowTone = FALSE
)

Value

The generated eBay product description.

Arguments

Model

The GPT-4 model to use for text generation. Default is "gpt-4o-mini".

SelectedCode

Whether to get the input from the selected code in RStudio. Default is TRUE.

verbose

Whether to display progress information. Default is TRUE.

SlowTone

Whether to print the output slowly. Default is FALSE.

Author

Satoshi Kume

Details

Create eBay Product Description

Examples

Run this code
if (FALSE) {
# Option 1
# Select some text in RStudio and then run the rstudio addins
# Option 2
# Copy the text into your clipboard then execute
createEBAYdes(Model = "gpt-4o-mini", SelectedCode = FALSE, verbose = TRUE)
}

Run the code above in your browser using DataLab