Can you use GPT Turbo to get long text for an article?

Is it possible to get long text for an article using GPT Turbo, my experiments allowed to get text in one GPT response up to 300 words is the maximum.

How can I get more than 600 or 900 words in a response?

If not, how can this be arranged differently?

1 Like

I think it depends on the configuration you use. Do you manually set the max_token or do you calculate it?

I perform the following calculation:

$length_text = strlen($text);
$percentage_max_tokens = 0.12;
$tokens = (int)($length_text * $percentage_max_tokens);

if ($tokens < 200) { $tokens = 200; }

You can play around with the 0.12, let’s say to 0.16.