Bulk IA content

marcoaurelio1

Newbie
Joined
Jan 15, 2023
Messages
1
Reaction score
0
Is there a method to make bulk IA-generated content?
I mean, like writing 100 posts at the same time using a list of prompts
 
Hire a programmer to do it. I've created a python script automaticly generating unlimited amount of articles between 1000 and 1500 words and posting it to a wordpress instantly.
 
Help him out with a direction or something
I would recommend basic Python tutorials, automate boring stuff with python and then Python Tricks.

That's enough to create a simple OpenAI script to create articles.

It's basically a for loop for each keyword where you write the title with a prompt, and then another for loop to write the sections.

It's not as complicated as it sounds, a week of learning and anyone can do it.

Now, when it comes to the real apps, as in @Sartre level apps, it takes years of experience and learning.
 
I would recommend basic Python tutorials, automate boring stuff with python and then Python Tricks.

That's enough to create a simple OpenAI script to create articles.

It's basically a for loop for each keyword where you write the title with a prompt, and then another for loop to write the sections.

It's not as complicated as it sounds, a week of learning and anyone can do it.

Now, when it comes to the real apps, as in @Sartre level apps, it takes years of experience and learning.
You will quickly run into limits. But with proper exception handling and rotating between multiple accounts it is doable.
 
You will quickly run into limits. But with proper exception handling and rotating between multiple accounts it is doable.

You will run into limits if you don't use time sleeps, and unless you're posting 1000 articles a day (which I don't recommend anyone doing after the spam update), a single account can manage it perfectly.
 
You will run into limits if you don't use time sleeps, and unless you're posting 1000 articles a day (which I don't recommend anyone doing after the spam update), a single account can manage it perfectly.
How long do you wait between iterations?
 
I usually don't run into problems with a time sleep of 10/15 seconds. And even if I did, my app just retries it again after 60 seconds.
For me after a few requests I get the hourly limit reached error and have to switch accounts. Sometimes takes a lot longer than an hour to be able to use the same account again. Other times it just says an error occurred and I have to retry the prompt. Still a work in progress for me haha.
 
For me after a few requests I get the hourly limit reached error and have to switch accounts. Sometimes takes a lot longer than an hour to be able to use the same account again. Other times it just says an error occurred and I have to retry the prompt. Still a work in progress for me haha.
Are you using the API for text-davinci-003?
 
Is there a method to make bulk IA-generated content?
I mean, like writing 100 posts at the same time using a list of prompts
Yes, there is a tool called Wordplay.

Kmx0uLfjwW.png


You can check the complete review here.
 
Why? ChatGPT is really restricted, use the normal API, it's powerful enough given you have provided it with good prompts.
I'll give it a shot, thanks. It definitely will be smoother using davinci. But so far I haven't been able to recreate the results I get using chat. Might have to play around with it some more.
 
I'll give it a shot, thanks. It definitely will be smoother using davinci. But so far I haven't been able to recreate the results I get using chat. Might have to play around with it some more.
Explain in the prompt what you want to do, give it examples of what you consider good, text-davinci-003 is able to understand long prompts.
 
Back
Top