AI Mass Content Creation with a fixed structure

timi90

Newbie
Joined
Aug 28, 2023
Messages
24
Reaction score
8
Hey everyone, its a little complicated to find a real solution and did now a lot of research and seems there are "some solutions" but most are just too generic.
So here is the problem: We are trying to create an extensive glossary/dictionary for an NGO site I am running.

We would need a bulk creation method to actually follow always a similar/same pattern of "Short explanation" "Synonymes", "Intro Paragraph", "TLDR 5-10 bullet points", "Long Description", "3 Examples", "Things you need to understand - so the most important principles of the word", "Challenges", etc.

We already produced 2-3 articles by hand and used also ChatGPT-4 and it creates good output. Of course we needed to do some manual work but we are looking for a solution that automatically would write the sections, put them together, and gives us for a list of hundreds of words the files so we can manually update and change/edit/improve

Is there any experience with something like that or do you know scripts/tools/platforms that could help us?
 
Honestly, spend a few hours figuring out how the API works and use python. Very simple. even I could do it.

for example, you could ask gpt to create a txt files with all your prompts, then use gpt to connect that txt file to a small script and let it run over night. youll probably finish in a few hours. I did it before
 
Honestly, spend a few hours figuring out how the API works and use python. Very simple. even I could do it.

for example, you could ask gpt to create a txt files with all your prompts, then use gpt to connect that txt file to a small script and let it run over night. youll probably finish in a few hours. I did it before
hahaha, ok. Thank you so much! That is then a more technical solution than what my capabilities are, but seems I will need to ask someone from the technical side then.
 
Hey everyone, its a little complicated to find a real solution and did now a lot of research and seems there are "some solutions" but most are just too generic.
So here is the problem: We are trying to create an extensive glossary/dictionary for an NGO site I am running.

We would need a bulk creation method to actually follow always a similar/same pattern of "Short explanation" "Synonymes", "Intro Paragraph", "TLDR 5-10 bullet points", "Long Description", "3 Examples", "Things you need to understand - so the most important principles of the word", "Challenges", etc.

We already produced 2-3 articles by hand and used also ChatGPT-4 and it creates good output. Of course we needed to do some manual work but we are looking for a solution that automatically would write the sections, put them together, and gives us for a list of hundreds of words the files so we can manually update and change/edit/improve

Is there any experience with something like that or do you know scripts/tools/platforms that could help us?

We use this method for this kind of tasks, like one GPT shortcode for "Short Description", another for "Synonyms", etc. - you can have as many AI-generated blocks with different HTML layouts and GPT prompts in the post as you want:

 
I guess you gotta build your own workflow using a mix of templates and prompts or prompt sequences.

Gotta test a lot of stuff and see what suits you best according to your needs. Been trying to do something like this for days now and im still trying to figure out the most effective way.

There is also the possibility of using some paid tool. There are many out there to choose.
 
For your case, no comercial tool will help if you want always the same structure.
Like they already said, Python script made by you of freelance, multiple prompts - one per block, and then join in one article.

If you know a little python, explain this to ChatGPT, and it will give you the starting script. Then you go part by part and polish the prompts.

If you get stuck with the logic, publish here the code and we can help.
 
Hey everyone, its a little complicated to find a real solution and did now a lot of research and seems there are "some solutions" but most are just too generic.
So here is the problem: We are trying to create an extensive glossary/dictionary for an NGO site I am running.

We would need a bulk creation method to actually follow always a similar/same pattern of "Short explanation" "Synonymes", "Intro Paragraph", "TLDR 5-10 bullet points", "Long Description", "3 Examples", "Things you need to understand - so the most important principles of the word", "Challenges", etc.

We already produced 2-3 articles by hand and used also ChatGPT-4 and it creates good output. Of course we needed to do some manual work but we are looking for a solution that automatically would write the sections, put them together, and gives us for a list of hundreds of words the files so we can manually update and change/edit/improve

Is there any experience with something like that or do you know scripts/tools/platforms that could help us?
If you post in want to buy section I can recommend my solution
 
thank you all so much for your help! I guess I will then make a "want to buy" post and will look then for a freelancer with the experience there, as it seems that its a little trickier.
 
Back
Top